summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAdam Powell <adamp@google.com>2012-09-16 17:08:18 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-09-16 17:08:18 -0700
commitfa9fc5bc1525f65bf042f6e30c32a985cd12a04f (patch)
treeb04cdd6a855bba4cb2f63fed5491442cd0baef87 /core
parentb137c8065db941b23ab23f6550a1c65693039ff5 (diff)
parent489f3451e2a59e19a67fbb28da2dcbd028fc77d1 (diff)
downloadframeworks_base-fa9fc5bc1525f65bf042f6e30c32a985cd12a04f.zip
frameworks_base-fa9fc5bc1525f65bf042f6e30c32a985cd12a04f.tar.gz
frameworks_base-fa9fc5bc1525f65bf042f6e30c32a985cd12a04f.tar.bz2
Merge "Add a minimum height of 64dp for AlertDialog content" into jb-mr1-dev
Diffstat (limited to 'core')
-rw-r--r--core/res/res/layout/alert_dialog_holo.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/res/res/layout/alert_dialog_holo.xml b/core/res/res/layout/alert_dialog_holo.xml
index 7fc31d8..3f1fa3c 100644
--- a/core/res/res/layout/alert_dialog_holo.xml
+++ b/core/res/res/layout/alert_dialog_holo.xml
@@ -67,7 +67,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
- android:orientation="vertical">
+ android:orientation="vertical"
+ android:minHeight="64dp">
<ScrollView android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -86,7 +87,8 @@
<FrameLayout android:id="@+id/customPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_weight="1">
+ android:layout_weight="1"
+ android:minHeight="64dp">
<FrameLayout android:id="@+android:id/custom"
android:layout_width="match_parent"
android:layout_height="wrap_content" />