diff options
| author | 2015-07-24 15:00:06 +0000 | |
|---|---|---|
| committer | 2015-07-24 15:00:06 +0000 | |
| commit | ff42cce4be414e12fc0aac70b12e9f31a323d5f7 (patch) | |
| tree | 88452dae829d58b7641552a29ebb2c2a4e7c88d9 | |
| parent | 56e1be700d76098bfdf1d72c0fedd2e77cc051fd (diff) | |
| parent | e00ab550d2ab3fc539cf02a45f774c9bf68e585a (diff) | |
am e00ab550: am ea00f320: Merge "Prevent lockscreen album art from flickering on metadata change." into mnc-dev
* commit 'e00ab550d2ab3fc539cf02a45f774c9bf68e585a':
Prevent lockscreen album art from flickering on metadata change.
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index a67e77a005ee..38e2d61f17f8 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -1690,7 +1690,8 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, } if (metaDataChanged) { if (mBackdropBack.getDrawable() != null) { - Drawable drawable = mBackdropBack.getDrawable(); + Drawable drawable = + mBackdropBack.getDrawable().getConstantState().newDrawable().mutate(); mBackdropFront.setImageDrawable(drawable); if (mScrimSrcModeEnabled) { mBackdropFront.getDrawable().mutate().setXfermode(mSrcOverXferMode); |