1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <LinearLayout
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 android:orientation="vertical"
9 android:paddingLeft="24dp"
10 android:paddingTop="16dp"
11 android:paddingRight="24dp"
12 android:paddingBottom="8dp">
13
14 <com.google.android.material.textfield.TextInputLayout
15 style="@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
16 android:layout_width="match_parent"
17 android:layout_height="wrap_content"
18 android:hint="@string/your_account">
19
20 <com.google.android.material.textfield.MaterialAutoCompleteTextView
21 android:id="@+id/account"
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:inputType="none" />
25 </com.google.android.material.textfield.TextInputLayout>
26
27 <com.google.android.material.textfield.TextInputLayout
28 android:id="@+id/account_jid_layout"
29 android:layout_width="match_parent"
30 android:layout_height="wrap_content"
31 android:hint="@string/xmpp_address">
32
33 <com.google.android.material.textfield.MaterialAutoCompleteTextView
34 android:padding="16dp"
35 android:id="@+id/jid"
36 android:layout_width="fill_parent"
37 android:layout_height="wrap_content"
38 android:imeOptions="actionDone|flagNoExtractUi"
39 android:inputType="textEmailAddress" />
40 </com.google.android.material.textfield.TextInputLayout>
41
42 <CheckBox
43 android:id="@+id/bookmark"
44 android:layout_width="wrap_content"
45 android:layout_height="wrap_content"
46 android:layout_marginTop="8dp"
47 android:checked="true"
48 android:text="@string/save_as_group_chat" />
49 </LinearLayout>
50</layout>