summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout/on_screen_submenu_item.xml25
1 files changed, 19 insertions, 6 deletions
diff --git a/res/layout/on_screen_submenu_item.xml b/res/layout/on_screen_submenu_item.xml
index 8e0470e..0cb6660 100644
--- a/res/layout/on_screen_submenu_item.xml
+++ b/res/layout/on_screen_submenu_item.xml
@@ -26,14 +26,27 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0" />
- <TextView android:id="@+id/title"
- android:layout_width="wrap_content"
+ <RelativeLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
- android:maxLines="2"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:ellipsize="end"
- android:fadingEdge="horizontal" />
+ android:gravity="center_vertical"
+ android:minHeight="?android:attr/listPreferredItemHeight">
+ <TextView android:id="@+id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:maxLines="2"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:ellipsize="end"
+ android:fadingEdge="horizontal" />
+ <TextView android:id="@+id/summary"
+ android:visibility='gone'
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/title"
+ android:layout_alignLeft="@id/title"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:singleLine="true" />
+ </RelativeLayout>
<RadioButton android:id="@+id/radio_button"
android:focusable="false"
android:clickable="false"