Reputation: 35
I'm new on android. After spending 3 days on this I can't figure this out. android:textColor=
on a textview but it doesn't change the color. All the other values I can change, but not the textColor.
Upvotes: 2
Views: 858
Reputation: 7936
Check my answer at similar question. Setting Android Textcolor being ignored for 5.0 but works for 6.0
Change your support library version to 23.2.1 do not use + It uses 24.0.0 alpha1 version which is buggy.
compile 'com.android.support:appcompat-v7:23.2.1'
Upvotes: 1