summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/home_page.xml (renamed from app/src/main/res/layout/fragment_first.xml)2
-rw-r--r--app/src/main/res/layout/news_page.xml (renamed from app/src/main/res/layout/fragment_second.xml)2
-rw-r--r--app/src/main/res/navigation/nav_graph.xml26
-rw-r--r--app/src/main/res/values/strings.xml5
4 files changed, 17 insertions, 18 deletions
diff --git a/app/src/main/res/layout/fragment_first.xml b/app/src/main/res/layout/home_page.xml
index 46033be..bf81de4 100644
--- a/app/src/main/res/layout/fragment_first.xml
+++ b/app/src/main/res/layout/home_page.xml
@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
- tools:context=".FirstFragment"
+ tools:context=".HomePage"
android:background="@color/very_dark_purple"
>
diff --git a/app/src/main/res/layout/fragment_second.xml b/app/src/main/res/layout/news_page.xml
index daabf01..5d9018c 100644
--- a/app/src/main/res/layout/fragment_second.xml
+++ b/app/src/main/res/layout/news_page.xml
@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
- tools:context=".SecondFragment"
+ tools:context=".NewsPage"
android:background="@color/very_dark_purple"
>
diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml
index 5441348..78eb7f0 100644
--- a/app/src/main/res/navigation/nav_graph.xml
+++ b/app/src/main/res/navigation/nav_graph.xml
@@ -3,26 +3,26 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav_graph"
- app:startDestination="@id/FirstFragment">
+ app:startDestination="@id/HomePage">
<fragment
- android:id="@+id/FirstFragment"
- android:name="xyz.adjutor.aniki.FirstFragment"
- android:label="@string/first_fragment_label"
- tools:layout="@layout/fragment_first">
+ android:id="@+id/HomePage"
+ android:name="xyz.adjutor.aniki.HomePage"
+ android:label="@string/home_page_label"
+ tools:layout="@layout/home_page">
<action
- android:id="@+id/action_FirstFragment_to_SecondFragment"
- app:destination="@id/SecondFragment" />
+ android:id="@+id/action_HomePage_to_NewsPage"
+ app:destination="@id/NewsPage" />
</fragment>
<fragment
- android:id="@+id/SecondFragment"
- android:name="xyz.adjutor.aniki.SecondFragment"
- android:label="@string/second_fragment_label"
- tools:layout="@layout/fragment_second">
+ android:id="@+id/NewsPage"
+ android:name="xyz.adjutor.aniki.NewsPage"
+ android:label="@string/news_page_label"
+ tools:layout="@layout/news_page">
<action
- android:id="@+id/action_SecondFragment_to_FirstFragment"
- app:destination="@id/FirstFragment" />
+ android:id="@+id/action_NewsPage_to_HomePage"
+ app:destination="@id/HomePage" />
</fragment>
</navigation> \ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 3eed9c6..b0be6b2 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -2,14 +2,13 @@
<string name="app_name">Aniki</string>
<string name="action_settings">Settings</string>
<!-- Strings used for fragments for navigation -->
- <string name="first_fragment_label">First Fragment</string>
- <string name="second_fragment_label">Second Fragment</string>
- <string name="hello_first_fragment">Oi Otouto !</string>
<string name="hello_second_fragment">Hello second fragment. Arg: %1$s</string>
<string name="info">Infos about the developper of the app.</string>
<string name="news">News</string>
<string name="article">Article</string>
<string name="top_manga">Top Manga</string>
<string name="home">Home</string>
+ <string name="home_page_label">First Fragment</string>
+ <string name="news_page_label">Second Fragment</string>
</resources> \ No newline at end of file