1. 程式人生 > >RadioButton隱藏預設圖示的相容性問題

RadioButton隱藏預設圖示的相容性問題

在4.1以上的系統設定RadioButton去除預設圖示時,通過設定button為@null是可行的,但是在4.1的系統上,會出現下面的問題

解決方案:必須連同background同時置為@null

<RadioButton
    android:id="@+id/rad_player_mode_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="10dp"
    android:layout_marginTop="10dp"
    android:background="@null"
    android:button="@null"
    android:drawableLeft="@drawable/radio_player_setingmode"
    android:text=" 流暢模式"
    android:textSize="18sp" />