LibreTube/app/src/main/res/navigation/nav.xml

40 lines
1.5 KiB
XML
Raw Normal View History

2021-12-09 18:25:32 +05:30
<?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/nav"
app:startDestination="@id/home2">
<fragment
android:id="@+id/home2"
android:name="xyz.btcland.libretube.Home"
android:label="fragment_home"
2021-12-28 01:37:07 +05:30
tools:layout="@layout/fragment_home" >
<action
android:id="@+id/action_home2_to_searchFragment"
app:destination="@id/searchFragment" />
</fragment>
2021-12-09 18:25:32 +05:30
<fragment
android:id="@+id/subscriptions"
android:name="xyz.btcland.libretube.Subscriptions"
android:label="fragment_subscriptions"
2021-12-28 01:37:07 +05:30
tools:layout="@layout/fragment_subscriptions" >
<action
android:id="@+id/action_subscriptions_to_searchFragment"
app:destination="@id/searchFragment" />
</fragment>
2021-12-09 18:25:32 +05:30
<fragment
android:id="@+id/library"
android:name="xyz.btcland.libretube.Library"
android:label="fragment_library"
2021-12-28 01:37:07 +05:30
tools:layout="@layout/fragment_library" >
<action
android:id="@+id/action_library_to_searchFragment"
app:destination="@id/searchFragment" />
</fragment>
<fragment
android:id="@+id/searchFragment"
android:name="xyz.btcland.libretube.SearchFragment"
android:label="fragment_search"
tools:layout="@layout/fragment_search" />
2021-12-09 18:25:32 +05:30
</navigation>