Loading packages/SystemUI/src/com/android/systemui/statusbar/NotificationContentView.java +8 −3 Original line number Diff line number Diff line Loading @@ -403,12 +403,17 @@ public class NotificationContentView extends FrameLayout { return mContext.getResources().getDimensionPixelSize( com.android.internal.R.dimen.notification_action_list_height); } int hint; if (mHeadsUpChild != null) { return mHeadsUpChild.getHeight(); hint = mHeadsUpChild.getHeight(); } else { return mContractedChild.getHeight() + mContext.getResources().getDimensionPixelSize( hint = mContractedChild.getHeight() + mContext.getResources().getDimensionPixelSize( com.android.internal.R.dimen.notification_action_list_height); } if (mExpandedChild != null) { hint = Math.min(hint, mExpandedChild.getHeight()); } return hint; } private void updateContentTransformation() { Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/NotificationContentView.java +8 −3 Original line number Diff line number Diff line Loading @@ -403,12 +403,17 @@ public class NotificationContentView extends FrameLayout { return mContext.getResources().getDimensionPixelSize( com.android.internal.R.dimen.notification_action_list_height); } int hint; if (mHeadsUpChild != null) { return mHeadsUpChild.getHeight(); hint = mHeadsUpChild.getHeight(); } else { return mContractedChild.getHeight() + mContext.getResources().getDimensionPixelSize( hint = mContractedChild.getHeight() + mContext.getResources().getDimensionPixelSize( com.android.internal.R.dimen.notification_action_list_height); } if (mExpandedChild != null) { hint = Math.min(hint, mExpandedChild.getHeight()); } return hint; } private void updateContentTransformation() { Loading