diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-12-31 09:00:25 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-12-31 09:00:25 +0000 |
commit | a6f728a96b1f3968e434678fc56ed2dd38b6b54a (patch) | |
tree | cbb0898d77d9515221ac7f7f6da733fa51e93f97 /app/src/main/res/layout/fragment_post_history.xml | |
parent | 321f4da6230fd6197e5e0773db3a8d28b01e5215 (diff) | |
download | infinity-for-reddit-a6f728a96b1f3968e434678fc56ed2dd38b6b54a.tar infinity-for-reddit-a6f728a96b1f3968e434678fc56ed2dd38b6b54a.tar.gz infinity-for-reddit-a6f728a96b1f3968e434678fc56ed2dd38b6b54a.tar.bz2 infinity-for-reddit-a6f728a96b1f3968e434678fc56ed2dd38b6b54a.tar.lz infinity-for-reddit-a6f728a96b1f3968e434678fc56ed2dd38b6b54a.tar.xz infinity-for-reddit-a6f728a96b1f3968e434678fc56ed2dd38b6b54a.tar.zst infinity-for-reddit-a6f728a96b1f3968e434678fc56ed2dd38b6b54a.zip |
Mark posts as read on scroll.
Diffstat (limited to 'app/src/main/res/layout/fragment_post_history.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_post_history.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_post_history.xml b/app/src/main/res/layout/fragment_post_history.xml index 325d74e1..8ced3790 100644 --- a/app/src/main/res/layout/fragment_post_history.xml +++ b/app/src/main/res/layout/fragment_post_history.xml @@ -93,6 +93,37 @@ </LinearLayout> <LinearLayout + android:id="@+id/mark_posts_as_read_on_scroll_linear_layout_post_history_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="4dp" + android:paddingBottom="4dp" + android:paddingStart="72dp" + android:paddingEnd="16dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground"> + + <TextView + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginEnd="16dp" + android:layout_gravity="center_vertical" + android:text="@string/settings_mark_posts_as_read_on_scroll_title" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_16" + android:fontFamily="?attr/font_family" /> + + <com.google.android.material.switchmaterial.SwitchMaterial + android:id="@+id/mark_posts_as_read_on_scroll_switch_post_history_fragment" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" /> + + </LinearLayout> + + <LinearLayout android:id="@+id/hide_read_posts_automatically_linear_layout_post_history_fragment" android:layout_width="match_parent" android:layout_height="wrap_content" |