在目标API 22之后,RadioGroup中的Radiobutton不可见

时间:2015-03-23 18:54:44

标签: java android radio-button

当我的targed SDK是Android 4.4.2时,我正在使用RadioButtons的RadioGroup。 当我定位Android 5.01时,它只适用于Android 5.01。 在Android 4.4.2中,它之前有效,但现在当检查无线电按钮时,它是不可见的。这些操作仍然有效,但未检查或取消选中无线电按钮。现在它在任何一个都不起作用。

下面是我的radiobuttons。我的背景颜色是黑色。      

    <RadioButton
        android:id="@+id/radio_easy"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/easy"
        style="@style/RadioButtonText" />

    <RadioButton
        android:id="@+id/radio_medium"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/medium" 
        style="@style/RadioButtonText"/>

    <RadioButton
        android:id="@+id/radio_hard"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/hard"
        style="@style/RadioButtonText" />

</RadioGroup>

这是我的AppTheme:

<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    <!--
        Theme customizations available in newer API levels can go in
        res/values-vXX/styles.xml, while customizations related to
        backward-compatibility can go here.
    -->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

1 个答案:

答案 0 :(得分:0)

您可以使用radioButton的自定义设计。

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:drawable="@drawable/check_red" android:state_checked="true" android:state_window_focused="false"/>
<item android:drawable="@drawable/check_gray" android:state_checked="false" android:state_window_focused="false"/>
<item android:drawable="@drawable/check_red" android:state_checked="true" android:state_pressed="true"/>
<item android:drawable="@drawable/check_gray" android:state_checked="false" android:state_pressed="true"/>
<item android:drawable="@drawable/check_red" android:state_checked="true" android:state_focused="true"/>
<item android:drawable="@drawable/check_gray" android:state_checked="false" android:state_focused="true"/>
<item android:drawable="@drawable/check_gray" android:state_checked="false"/>
<item android:drawable="@drawable/check_red" android:state_checked="true"/>

  

我不知道你是否仍然