LibreTube/app/src/main/res/navigation/nav.xml
2022-01-28 21:10:32 +04:00

39 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav"
app:startDestination="@id/home2">
<fragment
android:id="@+id/home2"
android:name="xyz.btcland.libretube.Home"
android:label="fragment_home"
tools:layout="@layout/fragment_home" >
<action
android:id="@+id/action_home2_to_subscriptions"
app:destination="@id/subscriptions"
app:popUpTo="@id/home2" />
</fragment>
<fragment
android:id="@+id/subscriptions"
android:name="xyz.btcland.libretube.Subscriptions"
android:label="fragment_subscriptions"
tools:layout="@layout/fragment_subscriptions" >
<action
android:id="@+id/action_subscriptions_to_home2"
app:destination="@id/home2"
app:popUpTo="@id/subscriptions" />
</fragment>
<fragment
android:id="@+id/library"
android:name="xyz.btcland.libretube.Library"
android:label="fragment_library"
tools:layout="@layout/fragment_library" >
</fragment>
<fragment
android:id="@+id/searchFragment"
android:name="xyz.btcland.libretube.SearchFragment"
android:label="fragment_search"
tools:layout="@layout/fragment_search" />
</navigation>