I recently changed the ActionBarSherlock library to AppCompat-v7, and the text color of my textviews is a little bit more "light-gray".
I would like to change the default textColor attribute of the library, and here is what I did in my custom theme:
<style name="Theme.myCustom" parent="@style/Theme.AppCompat.Light">
<item name="android:textColor">@color/textColor</item>
</style>
...where textColor is #000000 (black)
But nothing has changed in my app.
What is the best way to change the default texts color ?