summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout-sw600dp/fragment_settings.xml
diff options
context:
space:
mode:
authorcrockwave <curtis.rock@wirelessmessaging.com>2019-02-13 20:31:44 -0600
committercrockwave <curtis.rock@wirelessmessaging.com>2019-02-13 20:31:44 -0600
commitdd075a5bf100cc6255bede00c27e994f7ee5682a (patch)
treebbe18729d65251d75e2532d78ab3980ed884f001 /app/src/main/res/layout-sw600dp/fragment_settings.xml
parentaf61b59574f5709ff133e7cf1eb1e24b4d231010 (diff)
parent489f4a3a1caa2053b6ab33c513cfdd372667501b (diff)
Merge branch 'develop' of https://gitlab.com/tom79/mastalab into develop-curate_content
Diffstat (limited to 'app/src/main/res/layout-sw600dp/fragment_settings.xml')
-rw-r--r--app/src/main/res/layout-sw600dp/fragment_settings.xml30
1 files changed, 24 insertions, 6 deletions
diff --git a/app/src/main/res/layout-sw600dp/fragment_settings.xml b/app/src/main/res/layout-sw600dp/fragment_settings.xml
index df70e231e..40d9fc8d6 100644
--- a/app/src/main/res/layout-sw600dp/fragment_settings.xml
+++ b/app/src/main/res/layout-sw600dp/fragment_settings.xml
@@ -204,13 +204,31 @@
android:background="?colorAccent" />
</LinearLayout>
<!-- COMPACT MODE -->
- <CheckBox
- android:id="@+id/set_compact_mode"
- android:layout_width="wrap_content"
- android:layout_marginTop="@dimen/settings_checkbox_margin"
- android:layout_marginBottom="@dimen/settings_checkbox_margin"
- android:text="@string/set_compact_mode"
+ <TextView
+ android:text="@string/set_mode"
+ android:layout_width="match_parent"
android:layout_height="wrap_content" />
+ <RadioGroup
+ android:id="@+id/set_mode"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+ <RadioButton android:id="@+id/set_normal_mode"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/set_normal"
+ />
+ <RadioButton android:id="@+id/set_compact_mode"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/set_compact"
+ />
+ <RadioButton android:id="@+id/set_console_mode"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/set_console"
+ />
+ </RadioGroup>
<!-- HIDE FOLLOW INSTANCE BUTTON -->
<CheckBox