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="?attr/color_text_primary"
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="8dp"
29        android:text="@string/conference_address"
30        android:textColor="?attr/color_text_primary"
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="?attr/color_text_primary"
40        android:textColorHint="?attr/color_text_secondary"
41        android:textSize="?attr/TextSizeBody"/>
42
43    <CheckBox
44        android:id="@+id/bookmark"
45        android:layout_width="wrap_content"
46        android:layout_height="wrap_content"
47        android:layout_marginTop="8dp"
48        android:checked="true"
49        android:text="@string/save_as_bookmark"
50        android:textColor="?attr/color_text_primary"
51        android:textSize="?attr/TextSizeBody"/>
52
53</LinearLayout>