summaryrefslogtreecommitdiffstats
path: root/res/layout/settings_pane_list_item.xml
diff options
context:
space:
mode:
authorAbhisek Devkota <ciwrl@cyanogenmod.com>2014-05-26 20:51:39 +0000
committerGerrit Code Review <gerrit@cyanogenmod.org>2014-05-26 20:51:39 +0000
commit8dd8f20012f06ebc55de6fb01e9d728d7c3f19bd (patch)
tree893da75af836065e457535a6632d337697a74b1f /res/layout/settings_pane_list_item.xml
parenta869d707552dcd12c6aabd5099f3194d9591f496 (diff)
parent82196ead569c25dae76a70be6b2bc147666ea24d (diff)
downloadandroid_packages_apps_Trebuchet-8dd8f20012f06ebc55de6fb01e9d728d7c3f19bd.tar.gz
android_packages_apps_Trebuchet-8dd8f20012f06ebc55de6fb01e9d728d7c3f19bd.tar.bz2
android_packages_apps_Trebuchet-8dd8f20012f06ebc55de6fb01e9d728d7c3f19bd.zip
Merge "Trebuchet Settings UI Refresh" into cm-11.0
Diffstat (limited to 'res/layout/settings_pane_list_item.xml')
-rw-r--r--res/layout/settings_pane_list_item.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/res/layout/settings_pane_list_item.xml b/res/layout/settings_pane_list_item.xml
new file mode 100644
index 000000000..2a9d31b95
--- /dev/null
+++ b/res/layout/settings_pane_list_item.xml
@@ -0,0 +1,36 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal|bottom"
+ android:background="@drawable/listitem_bg"
+ android:paddingLeft="@dimen/overview_panel_list_padding"
+ android:paddingRight="@dimen/overview_panel_list_padding"
+ android:orientation="horizontal" >
+
+ <TextView
+ android:id="@+id/item_name"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:drawablePadding="4dp"
+ android:fontFamily="sans-serif-condensed"
+ android:gravity="left"
+ android:paddingBottom="@dimen/overview_panel_list_padding"
+ android:paddingTop="@dimen/overview_panel_list_padding"
+ android:textSize="20sp"
+ android:textColor="@color/listitem_text"/>
+
+ <TextView
+ android:id="@+id/item_state"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:drawablePadding="4dp"
+ android:fontFamily="sans-serif-condensed"
+ android:gravity="right"
+ android:paddingBottom="@dimen/overview_panel_list_padding"
+ android:paddingTop="@dimen/overview_panel_list_padding"
+ android:textSize="20sp"
+ android:textAllCaps="true"
+ android:textColor="@color/listitem_text" />
+
+</RelativeLayout> \ No newline at end of file