Set the theme of the Android application as Theme.AppCompat.NoActionBar, but when I do
android:textColor="@color/black"
for TextView in xml layout, color will not change.
However, everything works fine for Android 6.0 devices, but it doesn’t work for Android 5.0 or 4.0.3.
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="23" />
Setting the background color works fine. It is just the color of the text of different kinds.
compile 'com.android.support:support-v4:+'
compile 'com.android.support:appcompat-v7:+'
source
share