join_conference_dialog.xml

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