create_conference_dialog.xml

 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:paddingBottom="?attr/dialog_vertical_padding"
10        android:paddingLeft="?attr/dialog_horizontal_padding"
11        android:paddingRight="?attr/dialog_horizontal_padding"
12        android:paddingTop="?attr/dialog_vertical_padding">
13
14        <TextView
15            style="@style/InputLabel"
16            android:layout_width="match_parent"
17            android:layout_height="wrap_content"
18            android:text="@string/your_account"/>
19
20        <Spinner
21            android:id="@+id/account"
22            android:layout_width="fill_parent"
23            android:layout_height="wrap_content"/>
24
25        <com.google.android.material.textfield.TextInputLayout
26            android:layout_width="match_parent"
27            android:layout_height="wrap_content"
28            app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
29            app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint">
30
31            <EditText
32                android:id="@+id/group_chat_name"
33                style="@style/Widget.Conversations.EditText"
34                android:layout_width="match_parent"
35                android:layout_height="wrap_content"
36                android:hint="@string/create_dialog_group_chat_name"
37                android:imeOptions="actionNext|flagNoExtractUi"/>
38        </com.google.android.material.textfield.TextInputLayout>
39    </LinearLayout>
40</layout>