1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <LinearLayout
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 android:orientation="vertical"
9 android:paddingBottom="8dp"
10 android:paddingLeft="24dp"
11 android:paddingRight="24dp"
12 android:paddingTop="16dp">
13
14 <TextView
15 style="@style/InputLabel"
16 android:layout_width="wrap_content"
17 android:layout_height="wrap_content"
18 android:text="@string/your_account"/>
19
20 <Spinner
21 android:id="@+id/account"
22 android:layout_width="fill_parent"
23 android:layout_height="wrap_content"/>
24
25 <com.google.android.material.textfield.TextInputLayout
26 android:id="@+id/account_jid_layout"
27 android:layout_width="match_parent"
28 android:layout_height="wrap_content"
29 android:hint="@string/xmpp_address"
30 app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
31 app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint">
32
33 <AutoCompleteTextView
34 android:id="@+id/jid"
35 style="@style/Widget.Conversations.EditText"
36 android:layout_width="fill_parent"
37 android:layout_height="wrap_content"
38 android:inputType="textEmailAddress"
39 android:imeOptions="actionDone|flagNoExtractUi"/>
40 </com.google.android.material.textfield.TextInputLayout>
41
42 <CheckBox
43 android:id="@+id/bookmark"
44 style="@style/Widget.Conversations.CheckBox"
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 </LinearLayout>
51</layout>