android:button =“ @ null”在较低的API <= 19设备上不起作用

时间:2019-01-24 14:28:38

标签: android android-appcompat android-button androidx

我将androidx.appcompat:appcompat的版本更新为1.1.0-alpha01,以供使用new features。但是更新之后,带有RadioButton的android:button="@null"停止在API 19以下的设备上运行,并且不会删除默认的单选图标。有解决方案吗?

2 个答案:

答案 0 :(得分:7)

在我看来,这两种方法都只能使用

        android:button="@null"
        app:buttonCompat = "@null"

属性设置为@null

答案 1 :(得分:0)

我在同一个问题上挣扎。升级appcompact后,您现在必须使用

 `app:buttonCompat="@null"`

here那里得到了答案