This commit is contained in:
Jays2Kings 2021-03-21 12:53:11 -04:00
parent c50c1f9b10
commit 7963a607b8

View File

@ -143,9 +143,17 @@
android:paddingEnd="12dp" android:paddingEnd="12dp"
android:text="@string/unread_badges" /> android:text="@string/unread_badges" />
<HorizontalScrollView
android:id="@+id/scroll_unread_view"
android:layout_width="match_parent"
android:requiresFadingEdge="horizontal"
android:scrollbars="none"
android:fadingEdgeLength="20dp"
android:layout_height="wrap_content">
<RadioGroup <RadioGroup
android:id="@+id/unread_badge_group" android:id="@+id/unread_badge_group"
android:layout_width="match_parent" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal" android:orientation="horizontal"
android:paddingStart="12dp" android:paddingStart="12dp"
@ -171,6 +179,7 @@
android:maxLines="2" android:maxLines="2"
android:text="@string/show_count" /> android:text="@string/show_count" />
</RadioGroup> </RadioGroup>
</HorizontalScrollView>
<com.google.android.material.checkbox.MaterialCheckBox <com.google.android.material.checkbox.MaterialCheckBox
android:id="@+id/hide_reading" android:id="@+id/hide_reading"
@ -234,5 +243,5 @@
android:contentDescription="@string/close" android:contentDescription="@string/close"
android:focusable="true" android:focusable="true"
android:src="@drawable/ic_close_24dp" android:src="@drawable/ic_close_24dp"
android:tint="@color/gray_button" /> app:tint="@color/gray_button" />
</FrameLayout> </FrameLayout>