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 <TextView
11 style="@style/InputLabel"
12 android:layout_width="wrap_content"
13 android:layout_height="wrap_content"
14 android:text="@string/your_account"/>
15
16 <Spinner
17 android:id="@+id/account"
18 android:layout_width="fill_parent"
19 android:layout_height="wrap_content" />
20
21 <android.support.design.widget.TextInputLayout
22 android:id="@+id/account_jid_layout"
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 android:hint="@string/conference_address">
26
27 <AutoCompleteTextView
28 android:id="@+id/jid"
29 android:layout_width="fill_parent"
30 android:layout_height="wrap_content"
31 android:inputType="textEmailAddress"/>
32 </android.support.design.widget.TextInputLayout>
33
34
35 <CheckBox
36 android:id="@+id/bookmark"
37 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
39 android:layout_marginTop="8dp"
40 android:checked="true"
41 android:text="@string/save_as_bookmark"/>
42
43</LinearLayout>