diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/activity_detail_top_anime.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_detail_top_manga.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/search_anime_page.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/search_manga_page.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/top_anime_page.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/top_manga_page.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/navigation/nav_graph.xml | 8 |
7 files changed, 10 insertions, 10 deletions
diff --git a/app/src/main/res/layout/activity_detail_top_anime.xml b/app/src/main/res/layout/activity_detail_top_anime.xml index d4c9380..f352e61 100644 --- a/app/src/main/res/layout/activity_detail_top_anime.xml +++ b/app/src/main/res/layout/activity_detail_top_anime.xml @@ -8,7 +8,7 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" - tools:context=".presentation.view.DetailTopAnimeActivity"> + tools:context=".presentation.view.anime.DetailTopAnimeActivity"> <androidx.cardview.widget.CardView android:id="@+id/cv_header" diff --git a/app/src/main/res/layout/activity_detail_top_manga.xml b/app/src/main/res/layout/activity_detail_top_manga.xml index e659baf..cbfa296 100644 --- a/app/src/main/res/layout/activity_detail_top_manga.xml +++ b/app/src/main/res/layout/activity_detail_top_manga.xml @@ -8,7 +8,7 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="wrap_content" - tools:context=".presentation.view.DetailTopMangaActivity"> + tools:context=".presentation.view.manga.DetailTopMangaActivity"> <androidx.cardview.widget.CardView android:id="@+id/cv_header" diff --git a/app/src/main/res/layout/search_anime_page.xml b/app/src/main/res/layout/search_anime_page.xml index a3a1671..abbd762 100644 --- a/app/src/main/res/layout/search_anime_page.xml +++ b/app/src/main/res/layout/search_anime_page.xml @@ -5,7 +5,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/very_dark_purple" - tools:context=".presentation.view.SearchAnimePage"> + tools:context=".presentation.view.anime.SearchAnimePage"> <com.google.android.material.textfield.TextInputEditText android:id="@+id/tiet_query" diff --git a/app/src/main/res/layout/search_manga_page.xml b/app/src/main/res/layout/search_manga_page.xml index a83b4ef..db4bd6c 100644 --- a/app/src/main/res/layout/search_manga_page.xml +++ b/app/src/main/res/layout/search_manga_page.xml @@ -5,7 +5,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/very_dark_purple" - tools:context=".presentation.view.SearchMangaPage"> + tools:context=".presentation.view.manga.SearchMangaPage"> <com.google.android.material.textfield.TextInputEditText android:id="@+id/tiet_query" diff --git a/app/src/main/res/layout/top_anime_page.xml b/app/src/main/res/layout/top_anime_page.xml index 7b33f34..633e5f4 100644 --- a/app/src/main/res/layout/top_anime_page.xml +++ b/app/src/main/res/layout/top_anime_page.xml @@ -5,7 +5,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/very_dark_purple" - tools:context=".presentation.view.TopAnimePage"> + tools:context=".presentation.view.anime.TopAnimePage"> <androidx.swiperefreshlayout.widget.SwipeRefreshLayout android:id="@+id/swiperefresh" diff --git a/app/src/main/res/layout/top_manga_page.xml b/app/src/main/res/layout/top_manga_page.xml index e3bbd47..6bb911b 100644 --- a/app/src/main/res/layout/top_manga_page.xml +++ b/app/src/main/res/layout/top_manga_page.xml @@ -5,7 +5,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/very_dark_purple" - tools:context=".presentation.view.TopMangaPage"> + tools:context=".presentation.view.manga.TopMangaPage"> <androidx.swiperefreshlayout.widget.SwipeRefreshLayout android:id="@+id/swiperefresh" diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml index 95c7996..63639d8 100644 --- a/app/src/main/res/navigation/nav_graph.xml +++ b/app/src/main/res/navigation/nav_graph.xml @@ -28,7 +28,7 @@ <fragment android:id="@+id/TopMangaPage" - android:name="xyz.adjutor.aniki.presentation.view.TopMangaPage" + android:name="xyz.adjutor.aniki.presentation.view.manga.TopMangaPage" android:label="@string/top_manga_page_label" tools:layout="@layout/top_manga_page"> @@ -38,7 +38,7 @@ </fragment> <fragment android:id="@+id/TopAnimePage" - android:name="xyz.adjutor.aniki.presentation.view.TopAnimePage" + android:name="xyz.adjutor.aniki.presentation.view.anime.TopAnimePage" android:label="@string/top_anime_page_label" tools:layout="@layout/top_anime_page"> @@ -48,7 +48,7 @@ </fragment> <fragment android:id="@+id/SearchMangaPage" - android:name="xyz.adjutor.aniki.presentation.view.SearchMangaPage" + android:name="xyz.adjutor.aniki.presentation.view.manga.SearchMangaPage" android:label="@string/search_manga_page_label" tools:layout="@layout/search_manga_page"> @@ -58,7 +58,7 @@ </fragment> <fragment android:id="@+id/SearchAnimePage" - android:name="xyz.adjutor.aniki.presentation.view.SearchAnimePage" + android:name="xyz.adjutor.aniki.presentation.view.anime.SearchAnimePage" android:label="@string/search_anime_page_label" tools:layout="@layout/search_anime_page"> |