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 </com.google.android.material.textfield.TextInputLayout>
22
23 <com.google.android.material.textfield.TextInputLayout
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
26 android:layout_marginTop="8dp">
27
28 <EditText
29 android:id="@+id/group_chat_name"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:hint="@string/create_dialog_group_chat_name"
33 android:imeOptions="actionNext|flagNoExtractUi" />
34 </com.google.android.material.textfield.TextInputLayout>
35 </LinearLayout>
36</layout>