summaryrefslogtreecommitdiffstats
path: root/res/layout/iconpack_chooser.xml
diff options
context:
space:
mode:
authorDanesh Mondegarian <daneshm90@gmail.com>2014-01-22 23:37:51 -0800
committerDanesh Mondegarian <daneshm90@gmail.com>2014-01-29 02:13:59 -0800
commit89970649602163ba8cb5c01c4c77534f45b66121 (patch)
tree0bbc707eac05c52e67d47a967407cfb3e9d18518 /res/layout/iconpack_chooser.xml
parente86f3cb065b3901133b7fa05a9e847456f9d0939 (diff)
downloadandroid_packages_apps_Trebuchet-89970649602163ba8cb5c01c4c77534f45b66121.tar.gz
android_packages_apps_Trebuchet-89970649602163ba8cb5c01c4c77534f45b66121.tar.bz2
android_packages_apps_Trebuchet-89970649602163ba8cb5c01c4c77534f45b66121.zip
Trebuchet : Icon pack support
Icons courtesy of Asher Simonds Change-Id: If64811a5506022135ce772ab749a871dab00fc36
Diffstat (limited to 'res/layout/iconpack_chooser.xml')
-rw-r--r--res/layout/iconpack_chooser.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/res/layout/iconpack_chooser.xml b/res/layout/iconpack_chooser.xml
new file mode 100644
index 000000000..6caf9f765
--- /dev/null
+++ b/res/layout/iconpack_chooser.xml
@@ -0,0 +1,28 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:orientation="horizontal">
+ <ImageView
+ android:id="@+id/icon"
+ android:layout_gravity="center_vertical"
+ android:layout_width="@dimen/app_icon_size"
+ android:layout_height="@dimen/app_icon_size"
+ android:layout_margin="8dp"/>
+ <TextView
+ android:id="@+id/title"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:paddingStart="8dip"
+ android:paddingEnd="8dip"
+ android:layout_gravity="center_vertical"
+ android:layout_weight="1"
+ android:textAppearance="?android:attr/textAppearanceLarge"/>
+ <ImageView
+ android:src="@*android:drawable/ic_cab_done_holo_dark"
+ android:id="@+id/check"
+ android:layout_gravity="center_vertical"
+ android:layout_width="@dimen/app_icon_size"
+ android:layout_height="@dimen/app_icon_size"
+ android:layout_margin="8dp"/>
+
+</LinearLayout>