mirror of
https://github.com/KokaKiwi/BarInsta
synced 2026-03-14 00:11:40 +00:00
Fix re-init of fragments on tab change
This commit is contained in:
parent
64600ceb04
commit
74434aa3b3
27 changed files with 3527 additions and 704 deletions
|
|
@ -73,5 +73,6 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
app:labelVisibilityMode="auto" />
|
||||
app:labelVisibilityMode="auto"
|
||||
tools:menu="@menu/bottom_nav_menu" />
|
||||
</awais.instagrabber.customviews.InsetsNotifyingCoordinatorLayout>
|
||||
28
app/src/main/res/menu/bottom_nav_menu.xml
Normal file
28
app/src/main/res/menu/bottom_nav_menu.xml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@id/direct_messages_nav_graph"
|
||||
android:icon="@drawable/ic_message_24"
|
||||
android:contentDescription="@string/title_dm"
|
||||
android:title="@string/title_dm" />
|
||||
<item
|
||||
android:id="@id/feed_nav_graph"
|
||||
android:icon="@drawable/ic_home_24"
|
||||
android:contentDescription="@string/feed"
|
||||
android:title="@string/feed" />
|
||||
<item
|
||||
android:id="@id/profile_nav_graph"
|
||||
android:icon="@drawable/ic_person_24"
|
||||
android:contentDescription="@string/profile"
|
||||
android:title="@string/profile" />
|
||||
<item
|
||||
android:id="@id/discover_nav_graph"
|
||||
android:icon="@drawable/ic_explore_24"
|
||||
android:contentDescription="@string/title_discover"
|
||||
android:title="@string/title_discover" />
|
||||
<item
|
||||
android:id="@id/more_nav_graph"
|
||||
android:icon="@drawable/ic_more_horiz_24"
|
||||
android:contentDescription="@string/more"
|
||||
android:title="@string/more" />
|
||||
</menu>
|
||||
|
|
@ -2,70 +2,22 @@
|
|||
<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/nav_graph"
|
||||
app:startDestination="@id/feedFragment">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_global_hashTag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_global_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_global_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_global_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_global_search"
|
||||
app:destination="@id/searchFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_global_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_global_direct_thread"
|
||||
app:destination="@id/directMessagesThreadFragment" />
|
||||
android:id="@+id/direct_messages_nav_graph"
|
||||
app:startDestination="@id/directMessagesInboxFragment">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/feedFragment"
|
||||
android:name="awais.instagrabber.fragments.main.FeedFragment"
|
||||
android:label="@string/feed"
|
||||
tools:layout="@layout/fragment_feed">
|
||||
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_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
android:id="@+id/action_to_thread"
|
||||
app:destination="@id/directMessagesThreadFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story_list"
|
||||
app:destination="@id/storyListViewerFragment" />
|
||||
android:id="@+id/action_to_pending_inbox"
|
||||
app:destination="@id/directPendingInboxFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
|
|
@ -99,25 +51,6 @@
|
|||
app:destination="@id/user_search" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/searchFragment"
|
||||
android:name="awais.instagrabber.fragments.search.SearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_search">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/postViewFragment"
|
||||
android:name="awais.instagrabber.fragments.PostViewV2Fragment"
|
||||
|
|
@ -266,63 +199,6 @@
|
|||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/profileFragment"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<!-- Copy of profile fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
|
|
@ -470,126 +346,6 @@
|
|||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/discoverFragment"
|
||||
android:name="awais.instagrabber.fragments.main.DiscoverFragment"
|
||||
android:label="@string/title_discover"
|
||||
tools:layout="@layout/fragment_discover">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_topic_posts"
|
||||
app:destination="@id/topicPostsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/topicPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.TopicPostsFragment"
|
||||
tools:layout="@layout/fragment_topic_posts">
|
||||
|
||||
<argument
|
||||
android:name="topicCluster"
|
||||
app:argType="awais.instagrabber.repositories.responses.discover.TopicCluster" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/favoritesFragment"
|
||||
android:name="awais.instagrabber.fragments.FavoritesFragment"
|
||||
android:label="@string/title_favorites"
|
||||
tools:layout="@layout/fragment_favorites">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
</fragment>
|
||||
|
||||
<!-- Copy of favorites fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/favorites_non_top"
|
||||
android:name="awais.instagrabber.fragments.FavoritesFragment"
|
||||
android:label="@string/title_favorites"
|
||||
tools:layout="@layout/fragment_favorites">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/notificationsViewer"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<!-- Copy of notification viewer fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
|
|
@ -677,41 +433,6 @@
|
|||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyListViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryListViewerFragment"
|
||||
android:label="Stories"
|
||||
tools:layout="@layout/fragment_story_list_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<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_to_thread"
|
||||
app:destination="@id/directMessagesThreadFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_pending_inbox"
|
||||
app:destination="@id/directPendingInboxFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/directMessagesThreadFragment"
|
||||
android:name="awais.instagrabber.fragments.directmessages.DirectMessageThreadFragment"
|
||||
|
|
@ -730,6 +451,8 @@
|
|||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<deepLink app:uri="barinsta://dm_thread/{threadId}/{title}?pending={pending}" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_settings"
|
||||
app:destination="@id/directMessagesSettingsFragment" />
|
||||
|
|
@ -863,36 +586,4 @@
|
|||
app:argType="string[]"
|
||||
app:nullable="true" />
|
||||
</fragment>
|
||||
|
||||
<include app:graph="@navigation/settings_nav_graph" />
|
||||
|
||||
<fragment
|
||||
android:id="@+id/morePreferencesFragment"
|
||||
android:name="awais.instagrabber.fragments.settings.MorePreferencesFragment"
|
||||
android:label="@string/more">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_settings"
|
||||
app:destination="@id/settings_nav_graph" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_about"
|
||||
app:destination="@id/aboutFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_favorites"
|
||||
app:destination="@id/favorites_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_backup"
|
||||
app:destination="@id/backupPreferencesFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story_list"
|
||||
app:destination="@id/storyListViewerFragment" />
|
||||
</fragment>
|
||||
</navigation>
|
||||
518
app/src/main/res/navigation/discover_nav_graph.xml
Normal file
518
app/src/main/res/navigation/discover_nav_graph.xml
Normal file
|
|
@ -0,0 +1,518 @@
|
|||
<?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/discover_nav_graph"
|
||||
app:startDestination="@id/discoverFragment">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/discoverFragment"
|
||||
android:name="awais.instagrabber.fragments.main.DiscoverFragment"
|
||||
android:label="@string/title_discover"
|
||||
tools:layout="@layout/fragment_discover">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_topic_posts"
|
||||
app:destination="@id/topicPostsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryViewerFragment"
|
||||
android:label="StoryViewerFragment"
|
||||
tools:layout="@layout/fragment_story_viewer">
|
||||
|
||||
<argument
|
||||
android:name="options"
|
||||
app:argType="awais.instagrabber.repositories.requests.StoryViewerOptions" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/postViewFragment"
|
||||
android:name="awais.instagrabber.fragments.PostViewV2Fragment"
|
||||
android:label="@string/post"
|
||||
tools:layout="@layout/dialog_post_view">
|
||||
|
||||
<argument
|
||||
android:name="media"
|
||||
app:argType="awais.instagrabber.repositories.responses.Media"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="position"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/locationFragment"
|
||||
android:name="awais.instagrabber.fragments.LocationFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_location">
|
||||
|
||||
<argument
|
||||
android:name="locationId"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/hashTagFragment"
|
||||
android:name="awais.instagrabber.fragments.HashTagFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_hashtag">
|
||||
|
||||
<argument
|
||||
android:name="hashtag"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/commentsViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.comments.CommentsViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_comments">
|
||||
|
||||
<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="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of profile fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/profile_non_top"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedViewerFragment"
|
||||
android:label="Saved"
|
||||
tools:layout="@layout/fragment_saved">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="awais.instagrabber.models.enums.PostItemType"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/followViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.FollowViewerFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_followers_viewer">
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="isFollowersList"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/likesViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.LikesViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_likes">
|
||||
|
||||
<argument
|
||||
android:name="postId"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="isComment"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/topicPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.TopicPostsFragment"
|
||||
tools:layout="@layout/fragment_topic_posts">
|
||||
|
||||
<argument
|
||||
android:name="topicCluster"
|
||||
app:argType="awais.instagrabber.repositories.responses.discover.TopicCluster" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<!-- Copy of notification viewer fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/notifications_viewer_non_top"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedCollectionsFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedCollectionsFragment"
|
||||
android:label="@string/saved"
|
||||
tools:layout="@layout/fragment_saved_collections">
|
||||
|
||||
<argument
|
||||
android:name="isSaving"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_collection_posts"
|
||||
app:destination="@id/collectionPostsFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/collectionPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.CollectionPostsFragment"
|
||||
tools:layout="@layout/fragment_collection_posts">
|
||||
|
||||
<argument
|
||||
android:name="savedCollection"
|
||||
app:argType="awais.instagrabber.repositories.responses.saved.SavedCollection" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/user_search"
|
||||
android:name="awais.instagrabber.fragments.UserSearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_user_search">
|
||||
<argument
|
||||
android:name="multiple"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="title"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="action_label"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="show_groups"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="search_mode"
|
||||
android:defaultValue="USER_SEARCH"
|
||||
app:argType="awais.instagrabber.fragments.UserSearchMode" />
|
||||
|
||||
<argument
|
||||
android:name="hideUserIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="long[]"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="hideThreadIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string[]"
|
||||
app:nullable="true" />
|
||||
</fragment>
|
||||
</navigation>
|
||||
484
app/src/main/res/navigation/favorites_nav_graph.xml
Normal file
484
app/src/main/res/navigation/favorites_nav_graph.xml
Normal file
|
|
@ -0,0 +1,484 @@
|
|||
<?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/favorites_nav_graph"
|
||||
app:startDestination="@id/favoritesFragment">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/favoritesFragment"
|
||||
android:name="awais.instagrabber.fragments.FavoritesFragment"
|
||||
android:label="@string/title_favorites"
|
||||
tools:layout="@layout/fragment_favorites">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryViewerFragment"
|
||||
android:label="StoryViewerFragment"
|
||||
tools:layout="@layout/fragment_story_viewer">
|
||||
|
||||
<argument
|
||||
android:name="options"
|
||||
app:argType="awais.instagrabber.repositories.requests.StoryViewerOptions" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/postViewFragment"
|
||||
android:name="awais.instagrabber.fragments.PostViewV2Fragment"
|
||||
android:label="@string/post"
|
||||
tools:layout="@layout/dialog_post_view">
|
||||
|
||||
<argument
|
||||
android:name="media"
|
||||
app:argType="awais.instagrabber.repositories.responses.Media"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="position"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/locationFragment"
|
||||
android:name="awais.instagrabber.fragments.LocationFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_location">
|
||||
|
||||
<argument
|
||||
android:name="locationId"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/hashTagFragment"
|
||||
android:name="awais.instagrabber.fragments.HashTagFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_hashtag">
|
||||
|
||||
<argument
|
||||
android:name="hashtag"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/commentsViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.comments.CommentsViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_comments">
|
||||
|
||||
<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="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of profile fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/profile_non_top"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedViewerFragment"
|
||||
android:label="Saved"
|
||||
tools:layout="@layout/fragment_saved">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="awais.instagrabber.models.enums.PostItemType"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/followViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.FollowViewerFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_followers_viewer">
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="isFollowersList"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/likesViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.LikesViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_likes">
|
||||
|
||||
<argument
|
||||
android:name="postId"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="isComment"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedCollectionsFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedCollectionsFragment"
|
||||
android:label="@string/saved"
|
||||
tools:layout="@layout/fragment_saved_collections">
|
||||
|
||||
<argument
|
||||
android:name="isSaving"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_collection_posts"
|
||||
app:destination="@id/collectionPostsFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/collectionPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.CollectionPostsFragment"
|
||||
tools:layout="@layout/fragment_collection_posts">
|
||||
|
||||
<argument
|
||||
android:name="savedCollection"
|
||||
app:argType="awais.instagrabber.repositories.responses.saved.SavedCollection" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/user_search"
|
||||
android:name="awais.instagrabber.fragments.UserSearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_user_search">
|
||||
<argument
|
||||
android:name="multiple"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="title"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="action_label"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="show_groups"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="search_mode"
|
||||
android:defaultValue="USER_SEARCH"
|
||||
app:argType="awais.instagrabber.fragments.UserSearchMode" />
|
||||
|
||||
<argument
|
||||
android:name="hideUserIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="long[]"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="hideThreadIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string[]"
|
||||
app:nullable="true" />
|
||||
</fragment>
|
||||
|
||||
<!-- Copy of notification viewer fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/notifications_viewer_non_top"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
</navigation>
|
||||
520
app/src/main/res/navigation/feed_nav_graph.xml
Normal file
520
app/src/main/res/navigation/feed_nav_graph.xml
Normal file
|
|
@ -0,0 +1,520 @@
|
|||
<?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/feed_nav_graph"
|
||||
app:startDestination="@id/feedFragment">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/feedFragment"
|
||||
android:name="awais.instagrabber.fragments.main.FeedFragment"
|
||||
android:label="@string/feed"
|
||||
tools:layout="@layout/fragment_feed">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story_list"
|
||||
app:destination="@id/storyListViewerFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryViewerFragment"
|
||||
android:label="StoryViewerFragment"
|
||||
tools:layout="@layout/fragment_story_viewer">
|
||||
|
||||
<argument
|
||||
android:name="options"
|
||||
app:argType="awais.instagrabber.repositories.requests.StoryViewerOptions" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/postViewFragment"
|
||||
android:name="awais.instagrabber.fragments.PostViewV2Fragment"
|
||||
android:label="@string/post"
|
||||
tools:layout="@layout/dialog_post_view">
|
||||
|
||||
<argument
|
||||
android:name="media"
|
||||
app:argType="awais.instagrabber.repositories.responses.Media"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="position"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/locationFragment"
|
||||
android:name="awais.instagrabber.fragments.LocationFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_location">
|
||||
|
||||
<argument
|
||||
android:name="locationId"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/hashTagFragment"
|
||||
android:name="awais.instagrabber.fragments.HashTagFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_hashtag">
|
||||
|
||||
<argument
|
||||
android:name="hashtag"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/commentsViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.comments.CommentsViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_comments">
|
||||
|
||||
<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="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of profile fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/profile_non_top"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedViewerFragment"
|
||||
android:label="Saved"
|
||||
tools:layout="@layout/fragment_saved">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="awais.instagrabber.models.enums.PostItemType"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/followViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.FollowViewerFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_followers_viewer">
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="isFollowersList"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/likesViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.LikesViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_likes">
|
||||
|
||||
<argument
|
||||
android:name="postId"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="isComment"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of notification viewer fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/notifications_viewer_non_top"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedCollectionsFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedCollectionsFragment"
|
||||
android:label="@string/saved"
|
||||
tools:layout="@layout/fragment_saved_collections">
|
||||
|
||||
<argument
|
||||
android:name="isSaving"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_collection_posts"
|
||||
app:destination="@id/collectionPostsFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/collectionPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.CollectionPostsFragment"
|
||||
tools:layout="@layout/fragment_collection_posts">
|
||||
|
||||
<argument
|
||||
android:name="savedCollection"
|
||||
app:argType="awais.instagrabber.repositories.responses.saved.SavedCollection" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyListViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryListViewerFragment"
|
||||
android:label="Stories"
|
||||
tools:layout="@layout/fragment_story_list_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/user_search"
|
||||
android:name="awais.instagrabber.fragments.UserSearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_user_search">
|
||||
<argument
|
||||
android:name="multiple"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="title"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="action_label"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="show_groups"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="search_mode"
|
||||
android:defaultValue="USER_SEARCH"
|
||||
app:argType="awais.instagrabber.fragments.UserSearchMode" />
|
||||
|
||||
<argument
|
||||
android:name="hideUserIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="long[]"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="hideThreadIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string[]"
|
||||
app:nullable="true" />
|
||||
</fragment>
|
||||
</navigation>
|
||||
539
app/src/main/res/navigation/more_nav_graph.xml
Normal file
539
app/src/main/res/navigation/more_nav_graph.xml
Normal file
|
|
@ -0,0 +1,539 @@
|
|||
<?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/more_nav_graph"
|
||||
app:startDestination="@id/morePreferencesFragment">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/morePreferencesFragment"
|
||||
android:name="awais.instagrabber.fragments.settings.MorePreferencesFragment"
|
||||
android:label="@string/more">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_settings"
|
||||
app:destination="@id/settings_nav_graph" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_about"
|
||||
app:destination="@id/aboutFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_favorites"
|
||||
app:destination="@id/favorites_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_backup"
|
||||
app:destination="@id/backupPreferencesFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story_list"
|
||||
app:destination="@id/storyListViewerFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryViewerFragment"
|
||||
android:label="StoryViewerFragment"
|
||||
tools:layout="@layout/fragment_story_viewer">
|
||||
|
||||
<argument
|
||||
android:name="options"
|
||||
app:argType="awais.instagrabber.repositories.requests.StoryViewerOptions" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/postViewFragment"
|
||||
android:name="awais.instagrabber.fragments.PostViewV2Fragment"
|
||||
android:label="@string/post"
|
||||
tools:layout="@layout/dialog_post_view">
|
||||
|
||||
<argument
|
||||
android:name="media"
|
||||
app:argType="awais.instagrabber.repositories.responses.Media"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="position"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/locationFragment"
|
||||
android:name="awais.instagrabber.fragments.LocationFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_location">
|
||||
|
||||
<argument
|
||||
android:name="locationId"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/hashTagFragment"
|
||||
android:name="awais.instagrabber.fragments.HashTagFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_hashtag">
|
||||
|
||||
<argument
|
||||
android:name="hashtag"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/commentsViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.comments.CommentsViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_comments">
|
||||
|
||||
<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="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of profile fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/profile_non_top"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedViewerFragment"
|
||||
android:label="Saved"
|
||||
tools:layout="@layout/fragment_saved">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="awais.instagrabber.models.enums.PostItemType"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/followViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.FollowViewerFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_followers_viewer">
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="isFollowersList"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/likesViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.LikesViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_likes">
|
||||
|
||||
<argument
|
||||
android:name="postId"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="isComment"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of favorites fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/favorites_non_top"
|
||||
android:name="awais.instagrabber.fragments.FavoritesFragment"
|
||||
android:label="@string/title_favorites"
|
||||
tools:layout="@layout/fragment_favorites">
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
</fragment>
|
||||
|
||||
<!-- Copy of notification viewer fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/notifications_viewer_non_top"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedCollectionsFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedCollectionsFragment"
|
||||
android:label="@string/saved"
|
||||
tools:layout="@layout/fragment_saved_collections">
|
||||
|
||||
<argument
|
||||
android:name="isSaving"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_collection_posts"
|
||||
app:destination="@id/collectionPostsFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/collectionPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.CollectionPostsFragment"
|
||||
tools:layout="@layout/fragment_collection_posts">
|
||||
|
||||
<argument
|
||||
android:name="savedCollection"
|
||||
app:argType="awais.instagrabber.repositories.responses.saved.SavedCollection" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/user_search"
|
||||
android:name="awais.instagrabber.fragments.UserSearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_user_search">
|
||||
<argument
|
||||
android:name="multiple"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="title"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="action_label"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="show_groups"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="search_mode"
|
||||
android:defaultValue="USER_SEARCH"
|
||||
app:argType="awais.instagrabber.fragments.UserSearchMode" />
|
||||
|
||||
<argument
|
||||
android:name="hideUserIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="long[]"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="hideThreadIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string[]"
|
||||
app:nullable="true" />
|
||||
</fragment>
|
||||
|
||||
<include app:graph="@navigation/settings_nav_graph" />
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyListViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryListViewerFragment"
|
||||
android:label="Stories"
|
||||
tools:layout="@layout/fragment_story_list_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
</navigation>
|
||||
495
app/src/main/res/navigation/notification_viewer_nav_graph.xml
Normal file
495
app/src/main/res/navigation/notification_viewer_nav_graph.xml
Normal file
|
|
@ -0,0 +1,495 @@
|
|||
<?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/notification_viewer_nav_graph"
|
||||
app:startDestination="@id/notificationsViewer">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/notificationsViewer"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryViewerFragment"
|
||||
android:label="StoryViewerFragment"
|
||||
tools:layout="@layout/fragment_story_viewer">
|
||||
|
||||
<argument
|
||||
android:name="options"
|
||||
app:argType="awais.instagrabber.repositories.requests.StoryViewerOptions" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/postViewFragment"
|
||||
android:name="awais.instagrabber.fragments.PostViewV2Fragment"
|
||||
android:label="@string/post"
|
||||
tools:layout="@layout/dialog_post_view">
|
||||
|
||||
<argument
|
||||
android:name="media"
|
||||
app:argType="awais.instagrabber.repositories.responses.Media"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="position"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/locationFragment"
|
||||
android:name="awais.instagrabber.fragments.LocationFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_location">
|
||||
|
||||
<argument
|
||||
android:name="locationId"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/hashTagFragment"
|
||||
android:name="awais.instagrabber.fragments.HashTagFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_hashtag">
|
||||
|
||||
<argument
|
||||
android:name="hashtag"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/commentsViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.comments.CommentsViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_comments">
|
||||
|
||||
<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="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of profile fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/profile_non_top"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedViewerFragment"
|
||||
android:label="Saved"
|
||||
tools:layout="@layout/fragment_saved">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="awais.instagrabber.models.enums.PostItemType"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/followViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.FollowViewerFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_followers_viewer">
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="isFollowersList"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/likesViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.LikesViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_likes">
|
||||
|
||||
<argument
|
||||
android:name="postId"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="isComment"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of notification viewer fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/notifications_viewer_non_top"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedCollectionsFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedCollectionsFragment"
|
||||
android:label="@string/saved"
|
||||
tools:layout="@layout/fragment_saved_collections">
|
||||
|
||||
<argument
|
||||
android:name="isSaving"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_collection_posts"
|
||||
app:destination="@id/collectionPostsFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/collectionPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.CollectionPostsFragment"
|
||||
tools:layout="@layout/fragment_collection_posts">
|
||||
|
||||
<argument
|
||||
android:name="savedCollection"
|
||||
app:argType="awais.instagrabber.repositories.responses.saved.SavedCollection" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/user_search"
|
||||
android:name="awais.instagrabber.fragments.UserSearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_user_search">
|
||||
<argument
|
||||
android:name="multiple"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="title"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="action_label"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="show_groups"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="search_mode"
|
||||
android:defaultValue="USER_SEARCH"
|
||||
app:argType="awais.instagrabber.fragments.UserSearchMode" />
|
||||
|
||||
<argument
|
||||
android:name="hideUserIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="long[]"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="hideThreadIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string[]"
|
||||
app:nullable="true" />
|
||||
</fragment>
|
||||
</navigation>
|
||||
567
app/src/main/res/navigation/profile_nav_graph.xml
Normal file
567
app/src/main/res/navigation/profile_nav_graph.xml
Normal file
|
|
@ -0,0 +1,567 @@
|
|||
<?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/profile_nav_graph"
|
||||
app:startDestination="@id/profileFragment">
|
||||
|
||||
<fragment
|
||||
android:id="@+id/profileFragment"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/post_loading_dialog"
|
||||
android:name="awais.instagrabber.dialogs.PostLoadingDialogFragment"
|
||||
android:label="@string/direct_download_loading">
|
||||
|
||||
<argument
|
||||
android:name="shortCode"
|
||||
app:argType="string" />
|
||||
|
||||
<deepLink app:uri="barinsta://post/{shortCode}" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</dialog>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/storyViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.StoryViewerFragment"
|
||||
android:label="StoryViewerFragment"
|
||||
tools:layout="@layout/fragment_story_viewer">
|
||||
|
||||
<argument
|
||||
android:name="options"
|
||||
app:argType="awais.instagrabber.repositories.requests.StoryViewerOptions" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/searchFragment"
|
||||
android:name="awais.instagrabber.fragments.search.SearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_search">
|
||||
|
||||
<deepLink app:uri="barinsta://search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/postViewFragment"
|
||||
android:name="awais.instagrabber.fragments.PostViewV2Fragment"
|
||||
android:label="@string/post"
|
||||
tools:layout="@layout/dialog_post_view">
|
||||
|
||||
<argument
|
||||
android:name="media"
|
||||
app:argType="awais.instagrabber.repositories.responses.Media"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="position"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/locationFragment"
|
||||
android:name="awais.instagrabber.fragments.LocationFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_location">
|
||||
|
||||
<argument
|
||||
android:name="locationId"
|
||||
app:argType="long" />
|
||||
|
||||
<deepLink app:uri="barinsta://location/{locationId}" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/hashTagFragment"
|
||||
android:name="awais.instagrabber.fragments.HashTagFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_hashtag">
|
||||
|
||||
<argument
|
||||
android:name="hashtag"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<deepLink app:uri="barinsta://hashtag/{hashtag}" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/commentsViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.comments.CommentsViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_comments">
|
||||
|
||||
<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="long" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_likes"
|
||||
app:destination="@id/likesViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of profile fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/profile_non_top"
|
||||
android:name="awais.instagrabber.fragments.main.ProfileFragment"
|
||||
android:label="@string/profile"
|
||||
tools:layout="@layout/fragment_profile">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
android:defaultValue=""
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<deepLink app:uri="barinsta://profile/{username}" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved"
|
||||
app:destination="@id/savedViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_saved_collections"
|
||||
app:destination="@id/savedCollectionsFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_follow_viewer"
|
||||
app:destination="@id/followViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_user_search"
|
||||
app:destination="@id/user_search" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_notifications"
|
||||
app:destination="@id/notifications_viewer_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedViewerFragment"
|
||||
android:label="Saved"
|
||||
tools:layout="@layout/fragment_saved">
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
app:argType="awais.instagrabber.models.enums.PostItemType"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/followViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.FollowViewerFragment"
|
||||
android:label=""
|
||||
tools:layout="@layout/fragment_followers_viewer">
|
||||
|
||||
<argument
|
||||
android:name="profileId"
|
||||
app:argType="long" />
|
||||
|
||||
<argument
|
||||
android:name="isFollowersList"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="username"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<dialog
|
||||
android:id="@+id/likesViewerFragment"
|
||||
android:name="awais.instagrabber.fragments.LikesViewerFragment"
|
||||
android:label="Comments"
|
||||
tools:layout="@layout/fragment_likes">
|
||||
|
||||
<argument
|
||||
android:name="postId"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="isComment"
|
||||
app:argType="boolean"
|
||||
app:nullable="false" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</dialog>
|
||||
|
||||
<!-- Copy of notification viewer fragment tag -->
|
||||
<!-- Required to get back arrow in action bar -->
|
||||
<!-- See https://issuetracker.google.com/issues/192395936 -->
|
||||
<fragment
|
||||
android:id="@+id/notifications_viewer_non_top"
|
||||
android:name="awais.instagrabber.fragments.NotificationsViewerFragment"
|
||||
android:label="@string/title_notifications"
|
||||
tools:layout="@layout/fragment_notifications_viewer">
|
||||
|
||||
<argument
|
||||
android:name="type"
|
||||
android:defaultValue="notif"
|
||||
app:argType="string"
|
||||
app:nullable="false" />
|
||||
|
||||
<argument
|
||||
android:name="targetId"
|
||||
android:defaultValue="0L"
|
||||
app:argType="long" />
|
||||
|
||||
<deepLink app:uri="barinsta://notifications/{type}?targetId={targetId}" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_story"
|
||||
app:destination="@id/storyViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/savedCollectionsFragment"
|
||||
android:name="awais.instagrabber.fragments.SavedCollectionsFragment"
|
||||
android:label="@string/saved"
|
||||
tools:layout="@layout/fragment_saved_collections">
|
||||
|
||||
<argument
|
||||
android:name="isSaving"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_collection_posts"
|
||||
app:destination="@id/collectionPostsFragment" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/collectionPostsFragment"
|
||||
android:name="awais.instagrabber.fragments.CollectionPostsFragment"
|
||||
tools:layout="@layout/fragment_collection_posts">
|
||||
|
||||
<argument
|
||||
android:name="savedCollection"
|
||||
app:argType="awais.instagrabber.repositories.responses.saved.SavedCollection" />
|
||||
|
||||
<argument
|
||||
android:name="titleColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<argument
|
||||
android:name="backgroundColor"
|
||||
app:argType="integer" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_comments"
|
||||
app:destination="@id/commentsViewerFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_hashtag"
|
||||
app:destination="@id/hashTagFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_location"
|
||||
app:destination="@id/locationFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_post"
|
||||
app:destination="@id/postViewFragment" />
|
||||
|
||||
<action
|
||||
android:id="@+id/action_to_profile"
|
||||
app:destination="@id/profile_non_top" />
|
||||
</fragment>
|
||||
|
||||
<fragment
|
||||
android:id="@+id/user_search"
|
||||
android:name="awais.instagrabber.fragments.UserSearchFragment"
|
||||
android:label="@string/search"
|
||||
tools:layout="@layout/fragment_user_search">
|
||||
<argument
|
||||
android:name="multiple"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="title"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="action_label"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="show_groups"
|
||||
android:defaultValue="false"
|
||||
app:argType="boolean" />
|
||||
|
||||
<argument
|
||||
android:name="search_mode"
|
||||
android:defaultValue="USER_SEARCH"
|
||||
app:argType="awais.instagrabber.fragments.UserSearchMode" />
|
||||
|
||||
<argument
|
||||
android:name="hideUserIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="long[]"
|
||||
app:nullable="true" />
|
||||
|
||||
<argument
|
||||
android:name="hideThreadIds"
|
||||
android:defaultValue="@null"
|
||||
app:argType="string[]"
|
||||
app:nullable="true" />
|
||||
</fragment>
|
||||
</navigation>
|
||||
12
app/src/main/res/navigation/root_nav_graph.xml
Normal file
12
app/src/main/res/navigation/root_nav_graph.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<navigation>
|
||||
|
||||
<!--android:id="@+id/root"-->
|
||||
<!--app:startDestination="@id/profile_nav_graph"-->
|
||||
|
||||
<!--<include app:graph="@navigation/dm_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/feed_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/profile_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/discover_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/more_nav_graph" />-->
|
||||
</navigation>
|
||||
|
|
@ -4,110 +4,6 @@
|
|||
android:id="@+id/settings_nav_graph"
|
||||
app:startDestination="@id/settingsPreferencesFragment">
|
||||
|
||||
<!--<include app:graph="@navigation/profile_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/hashtag_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/location_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/comments_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/likes_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/notification_viewer_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/story_list_nav_graph" />-->
|
||||
<!--<include app:graph="@navigation/discover_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="long" />-->
|
||||
<!--</action>-->
|
||||
|
||||
<!--<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>-->
|
||||
|
||||
<!--<action-->
|
||||
<!-- android:id="@+id/action_global_profileFragment"-->
|
||||
<!-- app:destination="@id/profile_nav_graph">-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="username"-->
|
||||
<!-- app:argType="string"-->
|
||||
<!-- app:nullable="true" />-->
|
||||
<!--</action>-->
|
||||
|
||||
<!--<action-->
|
||||
<!-- android:id="@+id/action_global_hashTagFragment"-->
|
||||
<!-- app:destination="@id/hashtag_nav_graph">-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="hashtag"-->
|
||||
<!-- app:argType="string"-->
|
||||
<!-- app:nullable="false" />-->
|
||||
<!--</action>-->
|
||||
|
||||
<!--<action-->
|
||||
<!-- android:id="@+id/action_global_locationFragment"-->
|
||||
<!-- app:destination="@id/location_nav_graph">-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="locationId"-->
|
||||
<!-- app:argType="long" />-->
|
||||
<!--</action>-->
|
||||
|
||||
<!--<action-->
|
||||
<!-- android:id="@+id/action_global_storyListViewerFragment"-->
|
||||
<!-- app:destination="@id/story_list_nav_graph">-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="type"-->
|
||||
<!-- app:argType="string"-->
|
||||
<!-- app:nullable="false" />-->
|
||||
<!--</action>-->
|
||||
|
||||
<!--<action-->
|
||||
<!-- android:id="@+id/action_global_notificationsViewerFragment"-->
|
||||
<!-- app:destination="@id/notification_viewer_nav_graph">-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="type"-->
|
||||
<!-- app:argType="string"-->
|
||||
<!-- app:nullable="false" />-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="targetId"-->
|
||||
<!-- android:defaultValue="0L"-->
|
||||
<!-- app:argType="long" />-->
|
||||
<!--</action>-->
|
||||
|
||||
<!--<action-->
|
||||
<!-- android:id="@+id/action_global_post_view"-->
|
||||
<!-- app:destination="@id/postViewFragment">-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="media"-->
|
||||
<!-- app:argType="awais.instagrabber.repositories.responses.Media"-->
|
||||
<!-- app:nullable="false" />-->
|
||||
<!-- <argument-->
|
||||
<!-- android:name="position"-->
|
||||
<!-- app:argType="integer" />-->
|
||||
<!--</action>-->
|
||||
|
||||
<!--<include app:graph="@navigation/user_search_nav_graph" />-->
|
||||
|
||||
<!--<action-->
|
||||
<!-- android:id="@+id/action_global_user_search"-->
|
||||
<!-- app:destination="@id/user_search_nav_graph" />-->
|
||||
|
||||
<fragment
|
||||
android:id="@+id/settingsPreferencesFragment"
|
||||
android:name="awais.instagrabber.fragments.settings.SettingsPreferencesFragment"
|
||||
|
|
@ -181,8 +77,4 @@
|
|||
android:id="@+id/postPreferencesFragment"
|
||||
android:name="awais.instagrabber.fragments.settings.PostPreferencesFragment"
|
||||
android:label="@string/pref_category_post" />
|
||||
<!--<fragment-->
|
||||
<!-- android:id="@+id/postViewFragment"-->
|
||||
<!-- android:name="awais.instagrabber.fragments.PostViewV2Fragment"-->
|
||||
<!-- android:label="@string/post" />-->
|
||||
</navigation>
|
||||
|
|
@ -11,15 +11,6 @@
|
|||
|
||||
<item name="root_nav_graph" type="id" />
|
||||
|
||||
<!-- Navigation top level root ids -->
|
||||
<item name="feed_nav_graph" type="id" />
|
||||
<item name="profile_nav_graph" type="id" />
|
||||
<item name="direct_messages_nav_graph" type="id" />
|
||||
<item name="notification_viewer_nav_graph" type="id" />
|
||||
<item name="discover_nav_graph" type="id" />
|
||||
<item name="favorites_nav_graph" type="id" />
|
||||
<item name="more_nav_graph" type="id" />
|
||||
|
||||
<!-- story stickers -->
|
||||
<item name="mentions" type="id" />
|
||||
<item name="spotify" type="id" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue