1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android">
3<LinearLayout android:orientation="vertical"
4 android:layout_width="match_parent"
5 android:layout_height="match_parent"
6 android:paddingLeft="?attr/dialog_horizontal_padding"
7 android:paddingRight="?attr/dialog_horizontal_padding"
8 android:paddingBottom="?attr/dialog_vertical_padding"
9 android:paddingTop="?attr/dialog_vertical_padding">
10
11 <RadioGroup
12 android:id="@+id/show"
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content"
15 android:layout_marginBottom="?attr/dialog_vertical_padding">
16
17 <RadioButton
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:text="@string/presence_online"/>
21
22 <RadioButton
23 android:id="@+id/radioButton"
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
26 android:text="@string/presence_away"/>
27
28 <RadioButton
29 android:id="@+id/radioButton2"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:text="@string/presence_xa"/>
33
34 <RadioButton
35 android:layout_width="match_parent"
36 android:layout_height="wrap_content"
37 android:text="@string/presence_dnd"/>
38 </RadioGroup>
39
40 <android.support.design.widget.TextInputLayout
41 android:layout_width="match_parent"
42 android:layout_height="wrap_content">
43 <eu.siacs.conversations.ui.widget.ImmediateAutoCompleteTextView
44 android:id="@+id/status_message"
45 android:layout_width="match_parent"
46 android:layout_height="wrap_content"
47 android:ems="10"
48 android:hint="@string/status_message"
49 android:inputType="textPersonName"/>
50 </android.support.design.widget.TextInputLayout>
51
52</LinearLayout>
53</layout>