AppCompatCheckBox 缺少 setSupportBackgroundTintList 方法

Missing setSupportBackgroundTintList method for AppCompatCheckBox

基于this post we now have the ability to tint the widgets on older devices as well. Unfortunately setSupportBackgroundTintList() is missing for AppCompatCheckBox

我错过了什么吗?任何帮助是极大的赞赏。

P.S。我成功地为 AppCompatSpinner 使用了该方法,显然 AppCompatActivity 在 Activity.

中得到了扩展

由于 AppCompatCheckBox 不可能(据我所知)以编程方式也不可能 xml 在 Lollipop 之前设置背景色调,我想搜索一个可能有帮助的主题 属性 . This post 帮了我大忙。谢谢@SeanKenkeremath。我使用了 "colorControlNormal" 并且我的 AppCompatCheckBox 从一开始就是我想要的。

代码如下:

<style name="MyTheme" parent="@style/Theme.AppCompat.Light">
    ...
    <!-- Unchecked checkbox color-->
    <item name="colorControlNormal">@android:color/white</item>
    ...
</style>