aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/dialog_presence.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-04-22 21:46:40 +0200
committerChristian Schneppe <christian@pix-art.de>2018-04-22 21:46:40 +0200
commitd8d858ded510b09685b32566ab03a666cb1dcfa9 (patch)
tree797b72e1d747b0481561ebad7dc8df6ae71c9c7b /src/main/res/layout/dialog_presence.xml
parentad839a1ddaea72f766be80266ae5b6d4fa7cae7f (diff)
made checkboxes and radiobuttons stylable
Diffstat (limited to '')
-rw-r--r--src/main/res/layout/dialog_presence.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/res/layout/dialog_presence.xml b/src/main/res/layout/dialog_presence.xml
index 5ae9ec9de..72abb9305 100644
--- a/src/main/res/layout/dialog_presence.xml
+++ b/src/main/res/layout/dialog_presence.xml
@@ -19,24 +19,28 @@
<RadioButton
android:id="@+id/online"
+ style="@style/Widget.Conversations.RadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_online" />
<RadioButton
android:id="@+id/away"
+ style="@style/Widget.Conversations.RadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_away" />
<RadioButton
android:id="@+id/xa"
+ style="@style/Widget.Conversations.RadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_xa" />
<RadioButton
android:id="@+id/dnd"
+ style="@style/Widget.Conversations.RadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_dnd" />