diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-06-10 08:21:27 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-06-10 08:21:27 +0000 |
commit | afbebebde1ec3b52c4f5140c1aa106001bd4055b (patch) | |
tree | 6015a485f89002e612c326306b20d5be797564ce /app/src/main/res | |
parent | 907e3483999646b3e2ddc79a218629f7689f17dc (diff) | |
download | infinity-for-reddit-afbebebde1ec3b52c4f5140c1aa106001bd4055b.tar infinity-for-reddit-afbebebde1ec3b52c4f5140c1aa106001bd4055b.tar.gz infinity-for-reddit-afbebebde1ec3b52c4f5140c1aa106001bd4055b.tar.bz2 infinity-for-reddit-afbebebde1ec3b52c4f5140c1aa106001bd4055b.tar.lz infinity-for-reddit-afbebebde1ec3b52c4f5140c1aa106001bd4055b.tar.xz infinity-for-reddit-afbebebde1ec3b52c4f5140c1aa106001bd4055b.tar.zst infinity-for-reddit-afbebebde1ec3b52c4f5140c1aa106001bd4055b.zip |
Starting adding showing favorite multireddits and multireddits in main page.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/fragment_customize_main_page_tabs.xml | 62 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 2 |
2 files changed, 64 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_customize_main_page_tabs.xml b/app/src/main/res/layout/fragment_customize_main_page_tabs.xml index 85297183..2a5f19d0 100644 --- a/app/src/main/res/layout/fragment_customize_main_page_tabs.xml +++ b/app/src/main/res/layout/fragment_customize_main_page_tabs.xml @@ -463,6 +463,68 @@ app:drawableStartCompat="@drawable/ic_info_preference_24dp" /> <LinearLayout + android:id="@+id/show_favorite_multireddits_linear_layout_customize_main_page_tabs_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_more_tabs_show_favorite_multireddits_title" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_16" + android:fontFamily="?attr/font_family" /> + + <com.google.android.material.switchmaterial.SwitchMaterial + android:id="@+id/show_favorite_multireddits_switch_material_customize_main_page_tabs_fragment" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" /> + + </LinearLayout> + + <LinearLayout + android:id="@+id/show_multireddits_linear_layout_customize_main_page_tabs_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_more_tabs_show_multireddits_title" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_16" + android:fontFamily="?attr/font_family" /> + + <com.google.android.material.switchmaterial.SwitchMaterial + android:id="@+id/show_multireddits_switch_material_customize_main_page_tabs_fragment" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical" /> + + </LinearLayout> + + <LinearLayout android:id="@+id/show_favorite_subscribed_subreddits_linear_layout_customize_main_page_tabs_fragment" android:layout_width="match_parent" android:layout_height="wrap_content" diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 118d8002..ce33e48f 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -476,6 +476,8 @@ <string name="settings_tab_3_summary">Tab 3</string> <string name="settings_more_tabs_summary">More Tabs</string> <string name="settings_more_tabs_info_summary">Enabling the following options will cause an unintended behaviour:\nTabs may lose all the content after switching to others. This is the same as refreshing the page.</string> + <string name="settings_more_tabs_show_favorite_multireddits_title">Show Favorite Multireddits</string> + <string name="settings_more_tabs_show_multireddits_title">Show Multireddits</string> <string name="settings_more_tabs_show_favorite_subscribed_subreddits_title">Show Favorite Subscribed Subreddits</string> <string name="settings_more_tabs_show_subscribed_subreddits_title">Show Subscribed Subreddits</string> <string name="settings_tab_title">Title</string> |