diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2014-07-28 18:25:14 -0700 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2014-07-28 18:25:14 -0700 |
commit | 0f4a779214adb8a820d56344d06fba31332a6b5d (patch) | |
tree | f1fc26d2d5eec70ce554d09c5c10d55defda924a /src/com/android/settings/notification/NotificationStation.java | |
parent | 9e041f02ec6e73883c3412819f34f42f89e35716 (diff) | |
download | packages_apps_Settings-0f4a779214adb8a820d56344d06fba31332a6b5d.zip packages_apps_Settings-0f4a779214adb8a820d56344d06fba31332a6b5d.tar.gz packages_apps_Settings-0f4a779214adb8a820d56344d06fba31332a6b5d.tar.bz2 |
Fix App Info padding
- need to add to the previous defined on instead of replacing it
- verified also that Notification Station padding is ok too
See bug: #13140648 Settings needs to support the new Quantum Paper theme
Change-Id: I06394bec2a5baa548f34f3fe7ec19d60172a98e8
Diffstat (limited to 'src/com/android/settings/notification/NotificationStation.java')
-rw-r--r-- | src/com/android/settings/notification/NotificationStation.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/notification/NotificationStation.java b/src/com/android/settings/notification/NotificationStation.java index 8b5e150..024d863 100644 --- a/src/com/android/settings/notification/NotificationStation.java +++ b/src/com/android/settings/notification/NotificationStation.java @@ -142,7 +142,7 @@ public class NotificationStation extends SettingsPreferenceFragment { super.onActivityCreated(savedInstanceState); ListView listView = getListView(); - Utils.forceCustomPadding(listView); + Utils.forceCustomPadding(listView, false /* non additive padding */); mAdapter = new NotificationHistoryAdapter(mContext); listView.setAdapter(mAdapter); |