diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-02 11:15:56 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-02 11:15:56 +0100 |
commit | 6d5df6250d4c060840b64d7441525f85146fb87b (patch) | |
tree | a95d79af4dda46db4f69edd47c2e1c89f5ed8f1a /app/src/main/res/navigation/nav_graph.xml | |
parent | 848c8bf1ba4f0f3ecf2eeae0b9be2d6a664db2b4 (diff) |
Building the basic files to display the searched mangas.
Diffstat (limited to 'app/src/main/res/navigation/nav_graph.xml')
-rw-r--r-- | app/src/main/res/navigation/nav_graph.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml index 4ceeab2..2ee1921 100644 --- a/app/src/main/res/navigation/nav_graph.xml +++ b/app/src/main/res/navigation/nav_graph.xml @@ -17,6 +17,9 @@ <action android:id="@+id/action_HomePage_to_TopAnimePage" app:destination="@id/TopAnimePage" /> + <action + android:id="@+id/action_HomePage_to_SearchMangaPage" + app:destination="@id/SearchMangaPage" /> </fragment> @@ -40,5 +43,15 @@ android:id="@+id/action_TopAnimePage_to_HomePage" app:destination="@id/HomePage" /> </fragment> + <fragment + android:id="@+id/SearchMangaPage" + android:name="xyz.adjutor.aniki.manga.search.SearchMangaPage" + android:label="@string/search_manga_page_label" + tools:layout="@layout/search_manga_page"> + + <action + android:id="@+id/action_SearchMangaPage_to_HomePage" + app:destination="@id/HomePage" /> + </fragment> </navigation>
\ No newline at end of file |