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"
|
2022-02-01 21:22:06 +05:30
|
|
|
android:name="com.github.libretube.Home"
|
2021-12-09 18:25:32 +05:30
|
|
|
android:label="fragment_home"
|
2022-02-10 00:08:41 +05:30
|
|
|
tools:layout="@layout/fragment_home" />
|
2021-12-09 18:25:32 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/subscriptions"
|
2022-02-01 21:22:06 +05:30
|
|
|
android:name="com.github.libretube.Subscriptions"
|
2021-12-09 18:25:32 +05:30
|
|
|
android:label="fragment_subscriptions"
|
2022-02-10 00:08:41 +05:30
|
|
|
tools:layout="@layout/fragment_subscriptions" />
|
2021-12-09 18:25:32 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/library"
|
2022-02-01 21:22:06 +05:30
|
|
|
android:name="com.github.libretube.Library"
|
2021-12-09 18:25:32 +05:30
|
|
|
android:label="fragment_library"
|
2022-06-03 22:19:48 +05:30
|
|
|
tools:layout="@layout/fragment_library"></fragment>
|
2021-12-28 01:37:07 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/searchFragment"
|
2022-06-03 00:40:16 +05:30
|
|
|
android:name="com.github.libretube.fragments.SearchFragment"
|
2021-12-28 01:37:07 +05:30
|
|
|
android:label="fragment_search"
|
|
|
|
tools:layout="@layout/fragment_search" />
|
2022-02-05 00:25:05 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/channel"
|
2022-06-03 00:40:16 +05:30
|
|
|
android:name="com.github.libretube.fragments.ChannelFragment"
|
2022-02-05 00:25:05 +05:30
|
|
|
android:label="channel"
|
2022-06-03 22:19:48 +05:30
|
|
|
tools:layout="@layout/fragment_channel">
|
2022-02-05 00:25:05 +05:30
|
|
|
<argument
|
|
|
|
android:name="channel_id"
|
|
|
|
app:argType="string" />
|
|
|
|
</fragment>
|
2022-02-06 18:40:27 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/playlistFragment"
|
2022-06-03 00:40:16 +05:30
|
|
|
android:name="com.github.libretube.fragments.PlaylistFragment"
|
2022-02-06 18:40:27 +05:30
|
|
|
android:label="fragment_playlist"
|
2022-06-03 22:19:48 +05:30
|
|
|
tools:layout="@layout/fragment_playlist">
|
2022-02-06 18:40:27 +05:30
|
|
|
<argument
|
|
|
|
android:name="playlist_id"
|
|
|
|
app:argType="string" />
|
|
|
|
</fragment>
|
2022-02-08 14:58:50 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/settings"
|
2022-05-11 13:34:48 +05:30
|
|
|
android:name="com.github.libretube.SettingsActivity$SettingsFragment"
|
2022-02-08 14:58:50 +05:30
|
|
|
android:label="Settings" />
|
2021-12-09 18:25:32 +05:30
|
|
|
</navigation>
|