答案 0 :(得分:0)
你可以设置复选框的android主题,以便在styles.xml
添加中获得你想要的颜色:
<style name="checkBoxStyle" parent="Base.Theme.AppCompat">
<item name="colorAccent">checked_color</item>
<item name="android:textColorSecondary">unchecked_color</item>
</style>
然后在你的布局文件中:
<CheckBox
android:theme="@style/checkBoxStyle"
android:id="@+id/chooseItemCheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
这也会改变边框的复选框颜色。