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

53 lines
2.3 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"
2022-07-01 21:59:47 +05:30
app:startDestination="@id/homeFragment">
2021-12-09 18:25:32 +05:30
<fragment
2022-07-01 21:59:47 +05:30
android:id="@+id/homeFragment"
2022-07-01 14:41:24 +05:30
android:name="com.github.libretube.fragments.HomeFragment"
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
2022-07-01 21:59:47 +05:30
android:id="@+id/subscriptionsFragment"
2022-07-01 14:41:24 +05:30
android:name="com.github.libretube.fragments.SubscriptionsFragment"
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
2022-07-01 21:59:47 +05:30
android:id="@+id/libraryFragment"
2022-07-01 14:41:24 +05:30
android:name="com.github.libretube.fragments.LibraryFragment"
2021-12-09 18:25:32 +05:30
android:label="fragment_library"
2022-08-01 01:47:36 +05:30
tools:layout="@layout/fragment_library" />
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-08-01 01:47:36 +05:30
<fragment
android:id="@+id/searchResultFragment"
android:name="com.github.libretube.fragments.SearchResultFragment"
android:label="fragment_search"
tools:layout="@layout/fragment_search_result" />
2022-02-05 00:25:05 +05:30
<fragment
2022-07-01 21:59:47 +05:30
android:id="@+id/channelFragment"
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-09-09 18:12:46 +05:30
tools:layout="@layout/fragment_channel" />
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-09-09 18:12:46 +05:30
tools:layout="@layout/fragment_playlist" />
2022-02-08 14:58:50 +05:30
<fragment
2022-07-01 21:59:47 +05:30
android:id="@+id/watchHistoryFragment"
android:name="com.github.libretube.fragments.WatchHistoryFragment"
android:label="@string/watch_history"
2022-07-02 01:02:26 +05:30
tools:layout="@layout/fragment_watch_history" />
2022-09-09 18:12:46 +05:30
<fragment
android:id="@+id/downloadsFragment"
android:name="com.github.libretube.fragments.DownloadsFragment"
android:label="@string/downloads"
tools:layout="@layout/fragment_downloads" />
2021-12-09 18:25:32 +05:30
</navigation>