mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 15:57:29 +00:00
122 lines
4.1 KiB
XML
122 lines
4.1 KiB
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/direct_messages_nav_graph"
|
|
app:startDestination="@id/directMessagesInboxFragment">
|
|
|
|
<include app:graph="@navigation/profile_nav_graph" />
|
|
|
|
<action
|
|
android:id="@+id/action_global_profileFragment"
|
|
app:destination="@id/profile_nav_graph">
|
|
<argument
|
|
android:name="username"
|
|
app:argType="string"
|
|
app:nullable="true" />
|
|
</action>
|
|
|
|
<include app:graph="@navigation/location_nav_graph" />
|
|
|
|
<action
|
|
android:id="@+id/action_global_locationFragment"
|
|
app:destination="@id/location_nav_graph">
|
|
<argument
|
|
android:name="locationId"
|
|
app:argType="string"
|
|
app:nullable="false" />
|
|
</action>
|
|
|
|
<include app:graph="@navigation/hashtag_nav_graph" />
|
|
|
|
<action
|
|
android:id="@+id/action_global_hashTagFragment"
|
|
app:destination="@id/hashtag_nav_graph">
|
|
<argument
|
|
android:name="hashtag"
|
|
app:argType="string"
|
|
app:nullable="false" />
|
|
</action>
|
|
|
|
<include app:graph="@navigation/notification_viewer_nav_graph" />
|
|
|
|
<action
|
|
android:id="@+id/action_global_notificationsViewerFragment"
|
|
app:destination="@id/notification_viewer_nav_graph">
|
|
<argument
|
|
android:name="type"
|
|
app:argType="string"
|
|
app:nullable="false" />
|
|
</action>
|
|
|
|
<include app:graph="@navigation/comments_nav_graph" />
|
|
|
|
<action
|
|
android:id="@+id/action_global_commentsViewerFragment"
|
|
app:destination="@id/comments_nav_graph">
|
|
<argument
|
|
android:name="shortCode"
|
|
app:argType="string"
|
|
app:nullable="false" />
|
|
<argument
|
|
android:name="postId"
|
|
app:argType="string"
|
|
app:nullable="false" />
|
|
<argument
|
|
android:name="postUserId"
|
|
app:argType="string"
|
|
app:nullable="false" />
|
|
</action>
|
|
|
|
<include app:graph="@navigation/likes_nav_graph" />
|
|
|
|
<action
|
|
android:id="@+id/action_global_likesViewerFragment"
|
|
app:destination="@id/likes_nav_graph">
|
|
<argument
|
|
android:name="postId"
|
|
app:argType="string"
|
|
app:nullable="false" />
|
|
<argument
|
|
android:name="isComment"
|
|
app:argType="boolean"
|
|
app:nullable="false" />
|
|
</action>
|
|
|
|
<fragment
|
|
android:id="@+id/directMessagesInboxFragment"
|
|
android:name="awais.instagrabber.fragments.directmessages.DirectMessageInboxFragment"
|
|
android:label="@string/action_dms"
|
|
tools:layout="@layout/fragment_direct_messages_inbox">
|
|
<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"
|
|
android:label="DirectMessagesThreadFragment"
|
|
tools:layout="@layout/fragment_direct_messages_thread">
|
|
<argument
|
|
android:name="threadId"
|
|
app:argType="string" />
|
|
<argument
|
|
android:name="title"
|
|
app:argType="string" />
|
|
<action
|
|
android:id="@+id/action_dMThreadFragment_to_dMSettingsFragment"
|
|
app:destination="@id/directMessagesSettingsFragment" />
|
|
</fragment>
|
|
<fragment
|
|
android:id="@+id/directMessagesSettingsFragment"
|
|
android:name="awais.instagrabber.fragments.directmessages.DirectMessageSettingsFragment"
|
|
android:label="DirectMessagesSettingsFragment"
|
|
tools:layout="@layout/fragment_direct_messages_settings">
|
|
<argument
|
|
android:name="threadId"
|
|
app:argType="string" />
|
|
<argument
|
|
android:name="title"
|
|
app:argType="string" />
|
|
</fragment>
|
|
</navigation> |