summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Adam Powell <adamp@google.com> 2012-02-29 14:21:19 -0800
committer Adam Powell <adamp@google.com> 2012-02-29 14:21:19 -0800
commitf7dbb510e605663b58f632c0618847c9e8ad5ba2 (patch)
treef87dd3211d6402d7c8e6d7861597217b3a0c053e
parentf64dfccd96286255fd382486c94cdb48921c45fa (diff)
Fix simple_list_item_multiple_choice to use correct size and spacing.
Change-Id: Ie9e3dd7ec10980a4411e60b93f778bb4863cbd3c
-rw-r--r--core/res/res/layout/simple_list_item_multiple_choice.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/res/res/layout/simple_list_item_multiple_choice.xml b/core/res/res/layout/simple_list_item_multiple_choice.xml
index 03054278bd94..cb23dfd602db 100644
--- a/core/res/res/layout/simple_list_item_multiple_choice.xml
+++ b/core/res/res/layout/simple_list_item_multiple_choice.xml
@@ -17,10 +17,10 @@
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
- android:layout_height="?android:attr/listPreferredItemHeight"
- android:textAppearance="?android:attr/textAppearanceListItem"
+ android:layout_height="?android:attr/listPreferredItemHeightSmall"
+ android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
- android:paddingLeft="8dip"
- android:paddingRight="8dip"
+ android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
+ android:paddingRight="?android:attr/listPreferredItemPaddingRight"
/>