join_conference_dialog.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<layout xmlns:android="http://schemas.android.com/apk/res/android">
 3    <LinearLayout
 4        android:layout_width="match_parent"
 5        android:layout_height="match_parent"
 6        android:orientation="vertical"
 7        android:paddingBottom="8dp"
 8        android:paddingLeft="24dp"
 9        android:paddingRight="24dp"
10        android:paddingTop="16dp">
11
12        <TextView
13            style="@style/InputLabel"
14            android:layout_width="wrap_content"
15            android:layout_height="wrap_content"
16            android:text="@string/your_account"/>
17
18        <Spinner
19            android:id="@+id/account"
20            android:layout_width="fill_parent"
21            android:layout_height="wrap_content" />
22
23        <android.support.design.widget.TextInputLayout
24            android:id="@+id/account_jid_layout"
25            android:layout_width="match_parent"
26            android:layout_height="wrap_content"
27            android:hint="@string/conference_address">
28
29            <AutoCompleteTextView
30                android:id="@+id/jid"
31                android:layout_width="fill_parent"
32                android:layout_height="wrap_content"
33                android:inputType="textEmailAddress"/>
34        </android.support.design.widget.TextInputLayout>
35
36        <CheckBox
37            android:id="@+id/bookmark"
38            android:layout_width="wrap_content"
39            android:layout_height="wrap_content"
40            android:layout_marginTop="8dp"
41            android:checked="true"
42            android:text="@string/save_as_bookmark"/>
43    </LinearLayout>
44</layout>