mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-04-20 09:58:28 +00:00
34 lines
No EOL
1.3 KiB
XML
34 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/contacts_nav_graph.xml"
|
|
app:startDestination="@id/detailContactFragment">
|
|
|
|
<fragment
|
|
android:id="@+id/detailContactFragment"
|
|
android:name="org.linphone.activities.main.contact.fragments.DetailContactFragment"
|
|
tools:layout="@layout/contact_detail_fragment"
|
|
android:label="DetailContactFragment">
|
|
|
|
<action
|
|
android:id="@+id/action_detailContactFragment_to_contactEditorFragment"
|
|
app:destination="@id/contactEditorFragment" />
|
|
|
|
<action
|
|
android:id="@+id/action_detailContactFragment_to_detailChatRoomFragment"
|
|
app:destination="@id/chat_nav_graph.xml" />
|
|
|
|
</fragment>
|
|
|
|
<fragment
|
|
android:id="@+id/contactEditorFragment"
|
|
android:name="org.linphone.activities.main.contact.fragments.ContactEditorFragment"
|
|
tools:layout="@layout/contact_editor_fragment"
|
|
android:label="ContactEditorFragment" >
|
|
<action
|
|
android:id="@+id/action_contactEditorFragment_to_detailContactFragment"
|
|
app:destination="@id/detailContactFragment" />
|
|
</fragment>
|
|
|
|
</navigation> |