diff options
author | Romain Guy <romainguy@android.com> | 2010-09-11 14:06:07 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2010-09-11 14:06:07 -0700 |
commit | 89e05fd560e3347070a55260b7aaec3db5647442 (patch) | |
tree | 6015da3ec05a0535a955f226545e7a1904156241 /core | |
parent | 01937f63dc0e4071f0b6d7513ca31a28d2489181 (diff) | |
parent | 342da2a5a6d5c5fce2068cd57905a29ab554b650 (diff) | |
download | frameworks_base-89e05fd560e3347070a55260b7aaec3db5647442.zip frameworks_base-89e05fd560e3347070a55260b7aaec3db5647442.tar.gz frameworks_base-89e05fd560e3347070a55260b7aaec3db5647442.tar.bz2 |
Merge "Fix the layouting of the checkbox."
Diffstat (limited to 'core')
-rw-r--r-- | core/res/res/layout/always_use_checkbox.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/res/layout/always_use_checkbox.xml b/core/res/res/layout/always_use_checkbox.xml index baa4bee..a955352 100644 --- a/core/res/res/layout/always_use_checkbox.xml +++ b/core/res/res/layout/always_use_checkbox.xml @@ -26,14 +26,14 @@ <CheckBox android:id="@+id/alwaysUse" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" android:focusable="true" android:clickable="true" /> <TextView android:id="@+id/clearDefaultHint" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceSmall" android:paddingLeft="36dip" |