Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android:button="@null" doesn't work on lower API <= 19 devices

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 ?

like image 394
Vladyslav Panchenko Avatar asked Jan 24 '19 14:01

Vladyslav Panchenko


1 Answers

In my case worked only with both

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

attributes set to @null

like image 157
Zoran Avatar answered Nov 10 '22 13:11

Zoran