command_search_list_field.xml

 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    <LinearLayout
 5        android:layout_width="fill_parent"
 6        android:layout_height="wrap_content"
 7        android:paddingBottom="16dp"
 8        android:orientation="vertical">
 9
10        <TextView
11            android:id="@+id/label"
12            android:layout_width="match_parent"
13            android:layout_height="wrap_content"
14            android:paddingLeft="13dp"
15            android:paddingRight="8dp"
16            android:paddingBottom="8dp"
17            android:textAppearance="@style/TextAppearance.Conversations.Subhead"
18            android:textColor="?attr/edit_text_color" />
19
20        <EditText
21            android:id="@+id/search"
22            style="@style/Widget.Conversations.EditText"
23            android:layout_width="match_parent"
24            android:layout_height="wrap_content"
25            android:layout_marginLeft="8dp"
26            android:layout_marginRight="8dp"
27            android:ems="10"
28            android:imeOptions="actionNext"
29            android:minLines="1" />
30
31        <ListView
32            android:id="@+id/list"
33            android:layout_width="match_parent"
34            android:layout_height="200dp"
35            android:choiceMode="singleChoice" />
36
37        <TextView
38            android:id="@+id/desc"
39            android:layout_width="match_parent"
40            android:layout_height="wrap_content"
41            android:paddingLeft="16dp"
42            android:paddingRight="8dp"
43            android:textAppearance="@style/TextAppearance.Conversations.Status"
44            android:textColor="?android:textColorSecondary" />
45
46    </LinearLayout>
47</layout>