From 68de2356c5b10047d8be64eab9c9e1c5a007b609 Mon Sep 17 00:00:00 2001 From: relan Date: Fri, 16 Oct 2015 14:30:05 +0300 Subject: [PATCH 1/2] Fix default textColor for TextView TextView respects textViewStyle since appcompat-v7:22.2: public AppCompatTextView(Context context, AttributeSet attrs) { - this(context, attrs, 0); + this(context, attrs, android.R.attr.textViewStyle); } This change in appcompat-v7 breaks previous behaviour by applying textColorSecondary to TextViews: text becomes grey after upgrading appcompat-v7 to 22.2. See https://code.google.com/p/android/issues/detail?id=170476 --- F-Droid/res/values/styles.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/F-Droid/res/values/styles.xml b/F-Droid/res/values/styles.xml index 0339e3313..af3567065 100644 --- a/F-Droid/res/values/styles.xml +++ b/F-Droid/res/values/styles.xml @@ -9,6 +9,7 @@ @color/fdroid_green @color/fdroid_green @style/AlertDialogThemeDark + @style/TextViewStyle + +