1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android">
3
4 <LinearLayout
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 android:orientation="vertical"
8 android:padding="?dialogPreferredPadding">
9
10 <com.google.android.material.textfield.TextInputLayout
11 style="@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content"
14 android:hint="@string/your_account">
15
16 <com.google.android.material.textfield.MaterialAutoCompleteTextView
17 android:id="@+id/account"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:inputType="none" />
21
22 </com.google.android.material.textfield.TextInputLayout>
23
24 <com.google.android.material.textfield.TextInputLayout
25 android:id="@+id/jid_layout"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:layout_marginTop="8dp"
29 android:hint="@string/account_settings_jabber_id">
30
31 <com.google.android.material.textfield.MaterialAutoCompleteTextView
32 android:id="@+id/jid"
33 android:layout_width="fill_parent"
34 android:layout_height="wrap_content"
35 android:imeOptions="actionDone|flagNoExtractUi"
36 android:inputType="textEmailAddress"
37 android:padding="16dp" />
38 </com.google.android.material.textfield.TextInputLayout>
39 </LinearLayout>
40</layout>