其他分享
首页 > 其他分享> > 设置Android Textcolor将被忽略为5.0但适用于6.0

设置Android Textcolor将被忽略为5.0但适用于6.0

作者:互联网

Android应用主题设置为Theme.AppCompat.NoActionBar,但是当我这样做时

    android:textColor="@color/black"

对于xml布局中的TextView,颜色不会更改.

但是,一切都适用于Android 6.0设备,但它不适用于Android 5.0或4.0.3.

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="23" />

设置背景颜色很好.它只是不同视图的文本颜色.

compile 'com.android.support:support-v4:+'
compile 'com.android.support:appcompat-v7:+'

解决方法:

如果您使用的是版本v24.0.0 alpha1,请转回v23.2.1.有关在按钮,文本视图等上设置文本颜色的错误.

使用:

compile 'com.android.support:appcompat-v7:23.2.1'

标签:android,textcolor
来源: https://codeday.me/bug/20190527/1167203.html