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:gravity="center"
18 android:textAppearance="?textAppearanceBodyMedium" />
19
20 <TextView
21 android:id="@+id/desc"
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:paddingLeft="16dp"
25 android:paddingRight="8dp"
26 android:gravity="center"
27 android:textAppearance="?textAppearanceBodyMedium" />
28
29 <Button
30 android:id="@+id/default_button"
31 android:layout_width="match_parent"
32 android:layout_height="wrap_content"
33 android:layout_marginRight="40dp"
34 android:layout_marginLeft="40dp"
35 android:layout_marginBottom="24dp"
36 android:layout_marginTop="24dp"
37 android:gravity="center"
38 android:textAllCaps="false"
39 android:minHeight="75dp" />
40
41 <com.cheogram.android.GridView
42 android:id="@+id/buttons"
43 android:layout_width="fill_parent"
44 android:layout_height="wrap_content"
45 android:layout_marginTop="16dp"
46 android:layout_marginRight="16dp"
47 android:paddingLeft="16dp"
48 android:horizontalSpacing="0dp"
49 android:verticalSpacing="0dp"
50 android:gravity="center"
51 android:numColumns="auto_fit" />
52
53 <Button
54 android:id="@+id/open_button"
55 android:layout_width="match_parent"
56 android:layout_height="wrap_content"
57 android:layout_marginRight="8dp"
58 android:layout_marginLeft="8dp"
59 android:layout_marginTop="40dp"
60 android:gravity="center"
61 android:text="other / custom" />
62
63 </LinearLayout>
64</layout>