1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical"
6 android:paddingBottom="?attr/dialog_vertical_padding"
7 android:paddingLeft="?attr/dialog_horizontal_padding"
8 android:paddingRight="?attr/dialog_horizontal_padding"
9 android:paddingTop="?attr/dialog_vertical_padding">
10
11 <TextView
12 android:id="@+id/your_account"
13 android:layout_width="wrap_content"
14 android:layout_height="wrap_content"
15 android:text="@string/your_account"
16 android:textColor="?attr/color_text_primary"
17 android:textSize="?attr/TextSizeBody" />
18
19 <Spinner
20 android:id="@+id/account"
21 android:layout_width="fill_parent"
22 android:layout_height="wrap_content" />
23
24 <TextView
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:layout_marginTop="8dp"
28 android:text="@string/conference_subject"
29 android:textColor="?attr/color_text_primary"
30 android:textSize="?attr/TextSizeBody" />
31
32 <EditText
33 android:id="@+id/subject"
34 android:layout_width="fill_parent"
35 android:layout_height="wrap_content"
36 android:hint="@string/edit_subject_hint"
37 android:inputType="textAutoComplete"
38 android:textColor="?attr/color_text_primary"
39 android:textColorHint="?attr/color_text_secondary"
40 android:textSize="?attr/TextSizeBody" />
41
42</LinearLayout>