Conversations/res/layout/join_conference_dialog.xml

47 lines
1.6 KiB
XML
Raw Normal View History

2014-07-11 19:48:41 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="8dp" >
2014-07-11 19:48:41 +02:00
<TextView
2014-07-11 19:48:41 +02:00
android:id="@+id/your_account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/your_account"
2014-07-11 19:48:41 +02:00
android:textColor="@color/primarytext"
android:textSize="?attr/TextSizeBody" />
2014-07-11 19:48:41 +02:00
<Spinner
android:id="@+id/account"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
2014-07-11 19:48:41 +02:00
android:id="@+id/jabber_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/conference_address"
2014-07-11 19:48:41 +02:00
android:textColor="@color/primarytext"
android:textSize="?attr/TextSizeBody" />
2014-07-11 19:48:41 +02:00
<AutoCompleteTextView
android:id="@+id/jid"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/conference_address_example"
android:inputType="textEmailAddress"
2014-07-11 19:48:41 +02:00
android:textColor="@color/primarytext"
android:textColorHint="@color/secondarytext" />
2014-07-11 19:48:41 +02: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" />
2014-07-11 19:48:41 +02:00
</LinearLayout>