1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-09-20 01:57:29 +00:00
BarInsta/app/src/main/res/navigation/profile_nav_graph.xml

41 lines
1.4 KiB
XML
Raw Normal View History

2020-08-29 08:01:42 +00:00
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/profile_nav_graph"
app:startDestination="@id/profileFragment">
<include app:graph="@navigation/hashtag_nav_graph" />
<action
android:id="@+id/action_global_hashTagFragment"
app:destination="@id/hashtag_nav_graph">
<argument
android:name="hashtag"
app:argType="string"
app:nullable="false" />
</action>
<action
android:id="@+id/action_global_profileFragment"
app:destination="@id/profileFragment">
<argument
android:name="username"
app:argType="string"
app:nullable="false" />
</action>
2020-08-29 08:01:42 +00:00
<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"
app:argType="string"
app:nullable="false" />
<!--<action-->
<!-- android:id="@+id/action_profileFragment_self"-->
<!-- app:destination="@id/profileFragment" />-->
</fragment>
2020-08-29 08:01:42 +00:00
</navigation>