textAllCaps在AppcompatButton中的api 14下无效

时间:2016-01-23 16:30:22

标签: android android-support-library

我正在使用android.support.v7.widget.AppCompatButton,其中说明了 Supports textAllCaps style attribute which works back to Eclair MR1
但是我在带有android:textAllCaps = "false"的api 10的模拟器中进行了测试,但它不起作用。 任何评论或为什么文件说错了或我做错了什么?

它也不适用于app前缀。

1 个答案:

答案 0 :(得分:0)

http://developer.android.com/reference/android/support/v7/widget/AppCompatButton.html

支持textAllCaps样式属性,该属性可以追溯到Eclair MR1 Android 2.1 - 在API级别7中添加 )。

检查这个答案:

https://stackoverflow.com/a/22470083/4409113

<android.support.v7.internal.widget.CompatTextView
        style="@style/MyTextViewStyle"
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:textAllCaps="true"/>

将其与app前缀一起使用。