mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 09:56:49 +00:00
Adjust notification paddings
- Reduce main notification height - Increase header height and center "Notifications" - Footer has short height when empty to serve as padding Bug: 65215656 Change-Id: I691d176628b0b51e8d9af030084b8c29837778dc
This commit is contained in:
@@ -200,7 +200,9 @@ public class NotificationFooterLayout extends FrameLayout {
|
||||
PopupContainerWithArrow popup = PopupContainerWithArrow.getOpen(
|
||||
Launcher.getLauncher(getContext()));
|
||||
if (popup != null) {
|
||||
Animator collapseFooter = popup.reduceNotificationViewHeight(getHeight(),
|
||||
final int newHeight = getResources().getDimensionPixelSize(
|
||||
R.dimen.notification_empty_footer_height);
|
||||
Animator collapseFooter = popup.reduceNotificationViewHeight(getHeight() - newHeight,
|
||||
getResources().getInteger(R.integer.config_removeNotificationViewDuration));
|
||||
collapseFooter.addListener(new AnimatorListenerAdapter() {
|
||||
@Override
|
||||
@@ -208,7 +210,7 @@ public class NotificationFooterLayout extends FrameLayout {
|
||||
((ViewGroup) getParent()).findViewById(R.id.divider).setVisibility(GONE);
|
||||
// Keep view around because gutter is aligned to it, but remove height to
|
||||
// both hide the view and keep calculations correct for last dismissal.
|
||||
getLayoutParams().height = 0;
|
||||
getLayoutParams().height = newHeight;
|
||||
requestLayout();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user