aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/dialog_presence.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-04-01 22:14:30 +0200
committerChristian Schneppe <christian@pix-art.de>2018-04-01 22:14:30 +0200
commit0c9ba838e10d75713c2b51c22fb53a8ceb2f408c (patch)
tree7c07321883a10780f031b12c90bf65ecc557f678 /src/main/res/layout/dialog_presence.xml
parent6dae9982e26a8ddcb0856f641acb247607c70143 (diff)
finished 'Set Status Message' dialog
Diffstat (limited to '')
-rw-r--r--src/main/res/layout/dialog_presence.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main/res/layout/dialog_presence.xml b/src/main/res/layout/dialog_presence.xml
index bc0f30c32..164a79840 100644
--- a/src/main/res/layout/dialog_presence.xml
+++ b/src/main/res/layout/dialog_presence.xml
@@ -17,23 +17,25 @@
android:layout_marginBottom="?attr/dialog_vertical_padding">
<RadioButton
+ android:id="@+id/online"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_online" />
<RadioButton
- android:id="@+id/radioButton"
+ android:id="@+id/away"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_away" />
<RadioButton
- android:id="@+id/radioButton2"
+ android:id="@+id/xa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_xa" />
<RadioButton
+ android:id="@+id/dnd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_dnd" />
@@ -49,7 +51,7 @@
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/status_message"
- android:inputType="textPersonName" />
+ android:inputType="textShortMessage"/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>