2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-03-14 06:20:44 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<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="?attr/dialog_vertical_padding"
|
|
|
|
android:paddingLeft="?attr/dialog_horizontal_padding"
|
|
|
|
android:paddingRight="?attr/dialog_horizontal_padding"
|
|
|
|
android:paddingTop="?attr/dialog_vertical_padding">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-03-14 06:20:44 +00:00
|
|
|
<TextView
|
|
|
|
style="@style/InputLabel"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/your_account"/>
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/account"
|
2018-02-28 16:39:59 +00:00
|
|
|
android:layout_width="fill_parent"
|
2018-03-14 06:20:44 +00:00
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
|
|
android:id="@+id/account_jid_layout"
|
|
|
|
android:layout_width="match_parent"
|
2018-02-28 16:39:59 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-03-14 06:20:44 +00:00
|
|
|
android:hint="@string/account_settings_jabber_id">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-03-14 06:20:44 +00:00
|
|
|
<AutoCompleteTextView
|
|
|
|
android:id="@+id/jid"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textEmailAddress"/>
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</layout>
|