diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/KeyguardIndicationController.java | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/KeyguardIndicationController.java b/packages/SystemUI/src/com/android/systemui/statusbar/KeyguardIndicationController.java index 25ef478fc630..74737c4c2948 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/KeyguardIndicationController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/KeyguardIndicationController.java @@ -280,13 +280,10 @@ public class KeyguardIndicationController { if (mDozing) { // If we're dozing, never show a persistent indication. if (!TextUtils.isEmpty(mTransientIndication)) { - // When dozing we ignore the initial text color and use white instead. - // We don't wait to draw black text on a black background. - int color = mTransientTextColor == mInitialTextColor ? - Color.WHITE : mTransientTextColor; + // When dozing we ignore any text color and use white instead, because + // colors can be hard to read in low brightness. + mTextView.setTextColor(Color.WHITE); mTextView.switchIndication(mTransientIndication); - mTextView.setTextColor(color); - } else { mTextView.switchIndication(null); } |