diff options
| author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-02 14:36:38 +0100 | 
|---|---|---|
| committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-03-02 14:36:38 +0100 | 
| commit | d5dd918f2c8c0f29c70379fce6e40b79141c798a (patch) | |
| tree | f66c52a4a9c13ec16757f7e7134fa75ce3b303bf /app/src/main/res/navigation | |
| parent | 81a89af9aa3c35a991eced93eeaa5066804e3ee5 (diff) | |
Added searching for animes.
Auto keyboard hiding method when submitting.
Diffstat (limited to 'app/src/main/res/navigation')
| -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 2ee1921..89cbc89 100644 --- a/app/src/main/res/navigation/nav_graph.xml +++ b/app/src/main/res/navigation/nav_graph.xml @@ -20,6 +20,9 @@          <action              android:id="@+id/action_HomePage_to_SearchMangaPage"              app:destination="@id/SearchMangaPage" /> +        <action +            android:id="@+id/action_HomePage_to_SearchAnimePage" +            app:destination="@id/SearchAnimePage" />      </fragment> @@ -53,5 +56,15 @@              android:id="@+id/action_SearchMangaPage_to_HomePage"              app:destination="@id/HomePage" />      </fragment> +    <fragment +        android:id="@+id/SearchAnimePage" +        android:name="xyz.adjutor.aniki.anime.search.SearchAnimePage" +        android:label="@string/search_anime_page_label" +        tools:layout="@layout/search_anime_page"> + +        <action +            android:id="@+id/action_SearchAnimePage_to_HomePage" +            app:destination="@id/HomePage" /> +    </fragment>  </navigation>
\ No newline at end of file | 
