command_radio_edit_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        <com.cheogram.android.GridView
21            android:id="@+id/radios"
22            android:layout_width="fill_parent"
23            android:layout_height="wrap_content"
24            android:layout_marginRight="8dp"
25            android:paddingLeft="8dp"
26            android:horizontalSpacing="0dp"
27            android:verticalSpacing="0dp"
28            android:numColumns="auto_fit" />
29
30        <EditText
31            android:id="@+id/open"
32            android:visibility="gone"
33            style="@style/Widget.Conversations.EditText"
34            android:layout_width="match_parent"
35            android:layout_height="wrap_content"
36            android:layout_marginLeft="8dp"
37            android:layout_marginRight="8dp"
38            android:ems="10"
39            android:imeOptions="actionNext"
40            android:inputType="textWebEditText"
41            android:minLines="1" />
42
43        <TextView
44            android:id="@+id/desc"
45            android:layout_width="match_parent"
46            android:layout_height="wrap_content"
47            android:paddingLeft="16dp"
48            android:paddingRight="8dp"
49            android:textAppearance="@style/TextAppearance.Conversations.Status"
50            android:textColor="?android:textColorSecondary" />
51
52    </LinearLayout>
53</layout>