dialog_join_conference.xml

 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:paddingLeft="24dp"
 9        android:paddingTop="16dp"
10        android:paddingRight="24dp"
11        android:paddingBottom="8dp">
12
13        <com.google.android.material.textfield.TextInputLayout
14            style="@style/Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
15            android:layout_width="match_parent"
16            android:layout_height="wrap_content"
17            android:hint="@string/your_account">
18
19            <com.google.android.material.textfield.MaterialAutoCompleteTextView
20                android:id="@+id/account"
21                android:layout_width="match_parent"
22                android:layout_height="wrap_content"
23                android:inputType="none" />
24        </com.google.android.material.textfield.TextInputLayout>
25
26        <com.google.android.material.textfield.TextInputLayout
27            android:id="@+id/account_jid_layout"
28            android:layout_width="match_parent"
29            android:layout_height="wrap_content"
30            android:hint="@string/xmpp_address">
31
32            <com.google.android.material.textfield.MaterialAutoCompleteTextView
33                android:id="@+id/jid"
34                android:layout_width="fill_parent"
35                android:layout_height="wrap_content"
36                android:imeOptions="actionDone|flagNoExtractUi"
37                android:inputType="textEmailAddress"
38                android:padding="16dp" />
39        </com.google.android.material.textfield.TextInputLayout>
40    </LinearLayout>
41</layout>