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