aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/icon_item.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/icon_item.xml')
-rw-r--r--res/layout/icon_item.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/res/layout/icon_item.xml b/res/layout/icon_item.xml
new file mode 100644
index 0000000..bc07353
--- /dev/null
+++ b/res/layout/icon_item.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="@drawable/icon_set_selector" >
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="12dp"
+ android:orientation="vertical" >
+
+ <ImageView
+ android:id="@+id/preview"
+ android:layout_width="match_parent"
+ android:layout_height="64dp"
+ android:gravity="center_horizontal" />
+
+ <TextView
+ android:id="@+id/name"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_horizontal" />
+
+ </LinearLayout>
+
+</FrameLayout>