diff options
| author | 2018-05-11 19:10:35 -0400 | |
|---|---|---|
| committer | 2018-05-11 19:15:40 -0400 | |
| commit | 1b480053cce22c88d1fa930deb4282d76d34b45d (patch) | |
| tree | 05d93ae3d70cba51fe767128bc988346458ad7ba | |
| parent | b399db7b2a3ec61d9e88a3fffd29b9445f7fc0c2 (diff) | |
Fix QS secondary text color.
Should be 54% black.
Change-Id: Ie9dafe2f185b201b4d4d8670518c6197ea1febb3
Fixes: 79582302
Test: visual
| -rw-r--r-- | packages/SystemUI/res/layout/qs_tile_label.xml | 2 | ||||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileView.java | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/res/layout/qs_tile_label.xml b/packages/SystemUI/res/layout/qs_tile_label.xml index 8ca867f65ef7..980442c488f4 100644 --- a/packages/SystemUI/res/layout/qs_tile_label.xml +++ b/packages/SystemUI/res/layout/qs_tile_label.xml @@ -80,7 +80,7 @@ android:visibility="gone" android:gravity="center" android:textAppearance="@style/TextAppearance.QS.TileLabel" - android:textColor="?android:attr/textColorPrimary"/> + android:textColor="?android:attr/textColorSecondary"/> <View android:id="@+id/underline" diff --git a/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileView.java b/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileView.java index 22ad550b56f5..91cd65259d73 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileView.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileView.java @@ -91,7 +91,6 @@ public class QSTileView extends QSTileBaseView { mExpandIndicator = mLabelContainer.findViewById(R.id.expand_indicator); mExpandSpace = mLabelContainer.findViewById(R.id.expand_space); mSecondLine = mLabelContainer.findViewById(R.id.app_label); - mSecondLine.setAlpha(.6f); addView(mLabelContainer); } |