anotherim/src/main/res/layout/dialog_presence.xml

55 lines
2 KiB
XML
Raw Normal View History

2018-03-03 11:27:46 +00:00
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
2018-03-31 10:16:56 +00:00
<LinearLayout
2018-03-03 11:27:46 +00:00
android:layout_width="match_parent"
2018-03-31 10:16:56 +00:00
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="?dialogPreferredPadding">
2018-03-03 11:27:46 +00:00
2018-03-31 10:16:56 +00:00
<RadioGroup
android:id="@+id/show"
2018-03-03 11:27:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content">
2018-03-03 11:27:46 +00:00
2018-03-31 10:16:56 +00:00
<RadioButton
android:id="@+id/online"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_online" />
2018-03-03 11:27:46 +00:00
2018-03-31 10:16:56 +00:00
<RadioButton
android:id="@+id/away"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_away" />
2018-03-03 11:27:46 +00:00
2018-03-31 10:16:56 +00:00
<RadioButton
android:id="@+id/xa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_xa" />
2018-03-31 10:16:56 +00:00
<RadioButton
android:id="@+id/dnd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presence_dnd" />
2018-03-31 10:16:56 +00:00
</RadioGroup>
<com.google.android.material.textfield.TextInputLayout
2018-03-03 11:27:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content">
2018-03-03 11:27:46 +00:00
2018-03-31 10:16:56 +00:00
<eu.siacs.conversations.ui.widget.ImmediateAutoCompleteTextView
android:padding="16dp"
2018-03-31 10:16:56 +00:00
android:id="@+id/status_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/status_message"
android:inputType="textShortMessage" />
</com.google.android.material.textfield.TextInputLayout>
2018-03-03 11:27:46 +00:00
2018-03-31 10:16:56 +00:00
</LinearLayout>
2018-03-03 11:27:46 +00:00
</layout>