2018-03-03 11:27:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-04-04 09:38:27 +00:00
|
|
|
<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"
|
2024-04-04 09:38:27 +00:00
|
|
|
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"
|
2024-04-04 09:38:27 +00:00
|
|
|
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"
|
2024-04-04 09:38:27 +00:00
|
|
|
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"
|
2024-04-04 09:38:27 +00:00
|
|
|
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"
|
2024-04-04 09:38:27 +00:00
|
|
|
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"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:text="@string/presence_dnd" />
|
2018-03-31 10:16:56 +00:00
|
|
|
</RadioGroup>
|
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2018-03-03 11:27:46 +00:00
|
|
|
android:layout_width="match_parent"
|
2024-04-04 09:38:27 +00:00
|
|
|
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
|
2024-04-04 09:38:27 +00:00
|
|
|
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"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:inputType="textShortMessage" />
|
2021-01-18 17:26:46 +00:00
|
|
|
</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>
|