Android ListPreference复选框不显示所选项目

时间:2019-12-23 16:38:36

标签: android

房间2的项目被选中,但不显示实心圆。 我不知道为什么它没有显示“动画”。
我错过了什么?

Emulator view of the error

很抱歉,这里没有代码,我在添加所有源代码时遇到了问题,因为问题/问题很明显,而且写的东西也不多,但问题出在样式上: / p>

问题已通过以下方式解决: styles.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorBlue</item>

        <item name="android:dialogTheme">@style/DialogStyle</item>
        <item name="android:alertDialogTheme">@style/DialogStyle</item>
    </style>

    <style name="DialogStyle" parent="android:Theme.Material.Dialog">
        <item name="android:colorAccent">@color/colorBlue</item>
    </style>

</resources>

越野车styles.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">Bad Value Here</item>


    </style>



</resources>

此修复程序如下所示:

enter image description here

0 个答案:

没有答案