2020-08-17 13:49:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-08-29 08:01:42 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-08-17 13:49:51 +00:00
|
|
|
android:id="@+id/direct_messages_nav_graph"
|
|
|
|
app:startDestination="@id/directMessagesInboxFragment">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/directMessagesInboxFragment"
|
|
|
|
android:name="awais.instagrabber.fragments.directmessages.DirectMessageInboxFragment"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:label="@string/action_dms"
|
|
|
|
tools:layout="@layout/fragment_direct_messages_inbox">
|
2020-08-17 13:49:51 +00:00
|
|
|
<action
|
|
|
|
android:id="@+id/action_dMInboxFragment_to_dMThreadFragment"
|
|
|
|
app:destination="@id/directMessagesThreadFragment" />
|
|
|
|
</fragment>
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/directMessagesThreadFragment"
|
|
|
|
android:name="awais.instagrabber.fragments.directmessages.DirectMessageThreadFragment"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:label="DirectMessagesThreadFragment"
|
|
|
|
tools:layout="@layout/fragment_direct_messages_thread">
|
2020-08-17 13:49:51 +00:00
|
|
|
<argument
|
|
|
|
android:name="threadId"
|
|
|
|
app:argType="string" />
|
|
|
|
<argument
|
|
|
|
android:name="title"
|
|
|
|
app:argType="string" />
|
2020-08-22 21:03:55 +00:00
|
|
|
<action
|
|
|
|
android:id="@+id/action_dMThreadFragment_to_dMSettingsFragment"
|
|
|
|
app:destination="@id/directMessagesSettingsFragment" />
|
2020-08-30 06:47:04 +00:00
|
|
|
<action
|
|
|
|
android:id="@+id/action_directMessagesThreadFragment_to_profileFragment"
|
|
|
|
app:destination="@id/profileFragment" />
|
2020-08-22 21:03:55 +00:00
|
|
|
</fragment>
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/directMessagesSettingsFragment"
|
|
|
|
android:name="awais.instagrabber.fragments.directmessages.DirectMessageSettingsFragment"
|
2020-08-29 08:01:42 +00:00
|
|
|
android:label="DirectMessagesSettingsFragment"
|
|
|
|
tools:layout="@layout/fragment_direct_messages_settings">
|
2020-08-22 21:03:55 +00:00
|
|
|
<argument
|
|
|
|
android:name="threadId"
|
|
|
|
app:argType="string" />
|
|
|
|
<argument
|
|
|
|
android:name="title"
|
|
|
|
app:argType="string" />
|
2020-08-17 13:49:51 +00:00
|
|
|
</fragment>
|
2020-08-30 06:47:04 +00:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/profileFragment"
|
|
|
|
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
|
|
|
android:label="ProfileFragment"
|
|
|
|
tools:layout="@layout/fragment_profile">
|
|
|
|
<argument
|
|
|
|
android:name="username"
|
|
|
|
app:argType="string"
|
|
|
|
app:nullable="false" />
|
|
|
|
</fragment>
|
2020-08-17 13:49:51 +00:00
|
|
|
</navigation>
|