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="?attr/dialog_vertical_padding"
8 android:paddingLeft="?attr/dialog_horizontal_padding"
9 android:paddingRight="?attr/dialog_horizontal_padding"
10 android:paddingTop="?attr/dialog_vertical_padding">
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/account_settings_jabber_id">
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 </LinearLayout>
36</layout>