We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e67871 + 23e6acb commit f4a1635Copy full SHA for f4a1635
1 file changed
packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java
@@ -263,7 +263,9 @@ private void startActivateAnimation(boolean reverse) {
263
animator.addListener(new AnimatorListenerAdapter() {
264
@Override
265
public void onAnimationEnd(Animator animation) {
266
- mBackgroundNormal.setVisibility(View.INVISIBLE);
+ if (mDimmed) {
267
+ mBackgroundNormal.setVisibility(View.INVISIBLE);
268
+ }
269
}
270
});
271
animator.reverse();
0 commit comments