diff options
author | Adam Powell <adamp@google.com> | 2011-07-21 13:10:28 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-07-21 13:10:28 -0700 |
commit | 374d387203e86cc798cb6c689dbe4eb647dd9bb9 (patch) | |
tree | d43073e6fc91ce61b30f091c3691a2ce5f55f097 /core/java | |
parent | ac4159549c10dbe428d42980278c0e43ecc8d93f (diff) | |
parent | 5ea0bc1abccea067875d00dc9b9dde7c17c1efff (diff) | |
download | frameworks_base-374d387203e86cc798cb6c689dbe4eb647dd9bb9.zip frameworks_base-374d387203e86cc798cb6c689dbe4eb647dd9bb9.tar.gz frameworks_base-374d387203e86cc798cb6c689dbe4eb647dd9bb9.tar.bz2 |
Merge "Bug 4948805 - fix custom title divider for dialogs"
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/com/android/internal/app/AlertController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/com/android/internal/app/AlertController.java b/core/java/com/android/internal/app/AlertController.java index 8d6caa1..2061c90 100644 --- a/core/java/com/android/internal/app/AlertController.java +++ b/core/java/com/android/internal/app/AlertController.java @@ -438,7 +438,7 @@ public class AlertController { LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); - topPanel.addView(mCustomTitleView, lp); + topPanel.addView(mCustomTitleView, 0, lp); // Hide the title template View titleTemplate = mWindow.findViewById(R.id.title_template); |