Skip to content

Commit 912d7d6

Browse files
fix
1 parent 84c7c3c commit 912d7d6

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

app/src/main/res/layout/activity_keyword_search.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
android:layout_width="match_parent"
3838
android:layout_height="wrap_content"
3939
app:layout_scrollFlags="scroll|enterAlways"
40-
app:navigationIcon="@drawable/ic_action_name">
40+
app:navigationIcon="?attr/homeAsUpIndicator">
4141
</com.google.android.material.appbar.MaterialToolbar>
4242
</com.google.android.material.appbar.AppBarLayout>
4343

@@ -51,7 +51,9 @@
5151
android:id="@+id/keyword_chip_group"
5252
android:layout_width="match_parent"
5353
android:layout_height="wrap_content"
54-
android:padding="16dp"
54+
android:paddingStart="16dp"
55+
android:paddingEnd="16dp"
56+
android:paddingTop="5dp"
5557
app:singleLine="true"
5658
app:singleSelection="true">
5759

@@ -69,7 +71,6 @@
6971
android:layout_width="wrap_content"
7072
android:layout_height="wrap_content"
7173
android:text="@string/title_series" />
72-
7374
</com.google.android.material.chip.ChipGroup>
7475

7576
<FrameLayout
@@ -80,7 +81,7 @@
8081
android:id="@+id/recycler_view"
8182
android:layout_width="match_parent"
8283
android:layout_height="match_parent"
83-
android:padding="2dip"
84+
android:padding="11dp"
8485
android:scrollbars="none" />
8586

8687
<com.facebook.shimmer.ShimmerFrameLayout

app/src/main/res/layout/activity_main.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
android:layout_width="wrap_content"
7575
android:layout_height="wrap_content"
7676
android:checked="true"
77-
android:text="Show &amp; Movie" />
77+
android:text="@string/chip_show_movie" />
7878

7979
<com.google.android.material.chip.Chip
8080
android:id="@+id/chip_movie"
@@ -95,7 +95,7 @@
9595
style="@style/Widget.Material3.Chip.Filter"
9696
android:layout_width="wrap_content"
9797
android:layout_height="wrap_content"
98-
android:text="@string/keyword_text" />
98+
android:text="@string/chip_word" />
9999
</com.google.android.material.chip.ChipGroup>
100100
</HorizontalScrollView>
101101

app/src/main/res/values/strings.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -813,6 +813,9 @@
813813

814814
<string name="app_language">App language</string>
815815
<string name="episode_groups">Episode Groups</string>
816+
<string name="chip_show_movie">Shows &amp; Movies</string>
817+
<string name="chip_word">Keywords</string>
818+
816819
<!-- WebDAV Sync & Backup -->
817820
<string name="webdav_backup">WebDAV Backup</string>
818821
<string name="enable_webdav_sync_backup">Enable WebDAV Sync/Backup</string>

0 commit comments

Comments
 (0)