11

I updated the version of the androidx.appcompat:appcompat to 1.1.0-alpha01 for use new features. But after the update, the android:button="@null" with the RadioButton stopped working on devices lower API 19 and doesn't delete the default radio icon. Any solutions ?

Vladyslav Panchenko
  • 1,517
  • 1
  • 19
  • 23

2 Answers2

15

In my case worked only with both

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

attributes set to @null

Zoran
  • 1,502
  • 19
  • 22
0

I was struggling with the same issue. Looks like after upgrading appcompact you now have to use

 `app:buttonCompat="@null"`

Got this answer from here

Adolf Dsilva
  • 13,092
  • 8
  • 34
  • 45