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 ?
Asked
Active
Viewed 817 times
11

Vladyslav Panchenko
- 1,517
- 1
- 19
- 23
-
I have the same problem. Have you found a solution to this? – Goran Horia Mihail May 16 '19 at 12:20
2 Answers
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