diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-20 13:30:17 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-20 13:30:17 +0100 |
commit | e41b93327626afba5427454dc2868cedf3f01972 (patch) | |
tree | c02f99657f8e96a2b56839a92c0e9784731ce8a7 /app/src/main/res | |
parent | 83aca7a0d44ede3960fc5752a205a55f63321832 (diff) | |
parent | 893c9110c99cff286011e3d35acb39ba65a97476 (diff) |
Merge branch 'release/1.2'v1.2.0
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/item_layout.xml | 13 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 20 |
2 files changed, 13 insertions, 20 deletions
diff --git a/app/src/main/res/layout/item_layout.xml b/app/src/main/res/layout/item_layout.xml index 32bea24..8d7a792 100644 --- a/app/src/main/res/layout/item_layout.xml +++ b/app/src/main/res/layout/item_layout.xml @@ -26,7 +26,7 @@ app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent" - android:src="@mipmap/ic_launcher_round" + android:src="@mipmap/ic_launcher" android:contentDescription="@string/rv_image" /> <TextView @@ -56,6 +56,17 @@ app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toTopOf="@id/tv_title"/> + <TextView + android:id="@+id/tv_score" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@color/very_dark_purple" + android:text="@string/rv_score" + android:textColor="@color/slightly_desaturated_magenta" + android:textSize="20sp" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintTop_toBottomOf="@id/tv_title"/> </androidx.constraintlayout.widget.ConstraintLayout> </androidx.cardview.widget.CardView>
\ 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 403a883..0a85246 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -2,10 +2,6 @@ <string name="app_name">Aniki</string> <string name="action_settings">Settings</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">Home Page</string> @@ -18,20 +14,6 @@ <string name="manga_image_content_description">Image of manga</string> <string name="top_anime_page_label">Top Anime Page</string> <string name="top_anime">Top Anime</string> - - <string-array name="manga_array"> - <item>Dragon Ball</item> - <item>Naruto</item> - <item>Fairy Tail</item> - <item>Shokugeki no Souma</item> - <item>Ajin</item> - <item>Komi-san no Komyushu</item> - <item>Hunter x Hunter</item> - <item>Detective Conan</item> - <item>Swortd Art Online</item> - <item>Scumbag Loser</item> - <item>Ana Satsujin</item> - <item>Samurai Deeper Kyou</item> - </string-array> + <string name="rv_score">00.00</string> </resources>
\ No newline at end of file |