2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-03-31 10:16:56 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2018-03-14 06:20:44 +00:00
|
|
|
<LinearLayout
|
2018-02-28 16:39:59 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-03-14 06:20:44 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
android:paddingRight="24dp"
|
|
|
|
android:paddingTop="16dp">
|
2018-02-28 16:39:59 +00:00
|
|
|
|
2018-03-14 06:20:44 +00:00
|
|
|
<TextView
|
|
|
|
style="@style/InputLabel"
|
|
|
|
android:layout_width="wrap_content"
|
2018-02-28 16:39:59 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-03-14 06:20:44 +00:00
|
|
|
android:text="@string/your_account"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-03-14 06:20:44 +00:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/account"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-03-14 06:20:44 +00:00
|
|
|
<android.support.design.widget.TextInputLayout
|
|
|
|
android:id="@+id/account_jid_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-31 10:16:56 +00:00
|
|
|
android:hint="@string/conference_address"
|
|
|
|
app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint"
|
|
|
|
app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error">
|
2018-03-14 06:20:44 +00:00
|
|
|
|
|
|
|
<AutoCompleteTextView
|
|
|
|
android:id="@+id/jid"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-31 10:16:56 +00:00
|
|
|
android:inputType="textEmailAddress"
|
|
|
|
style="@style/Widget.Conversations.EditText"/>
|
2018-03-14 06:20:44 +00:00
|
|
|
</android.support.design.widget.TextInputLayout>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-03-14 06:20:44 +00:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/bookmark"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:checked="true"
|
|
|
|
android:text="@string/save_as_bookmark"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</layout>
|