diff options
| author | 2011-07-21 13:07:05 -0700 | |
|---|---|---|
| committer | 2011-07-21 13:07:05 -0700 | |
| commit | 5ea0bc1abccea067875d00dc9b9dde7c17c1efff (patch) | |
| tree | 53c137e3c2975be2e7031980378cec0a56af754b | |
| parent | 040c2f91ed0968f3193031cabbf51b756930adc7 (diff) | |
Bug 4948805 - fix custom title divider for dialogs
Change-Id: I1b4fc8da71deb6450b21def15570a18a6b7200e2
| -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 8d6caa17d752..2061c905ebb0 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); |