summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout-sw600dp/fragment_settings.xml
diff options
context:
space:
mode:
authorstom79 <tschneider.ac@gmail.com>2019-02-13 18:36:29 +0100
committerstom79 <tschneider.ac@gmail.com>2019-02-13 18:36:29 +0100
commitda1b128daaf5fd13945941135a409b36f86be7ec (patch)
treeb2239253c8d6ffe6ac099791e30b8d3163cab03c /app/src/main/res/layout-sw600dp/fragment_settings.xml
parent51e8531e24f93915b48fa0247f6818bf85ab963b (diff)
Last fixes
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 6b25806c9..a0d026003 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