Android Checkbox app:checked = true,不显示复选标记

时间:2017-03-16 20:21:08

标签: android

使用视图模型设置复选框属性时,如果app:checked是以编程方式设置的,则它不会显示仅检查图片中的轮廓。其他一切都按预期工作。有没有人见过这个或者可以帮忙?

Notice the first checkbox is not checked, and app:checked = true is set programmatically using a viewModel.

1 个答案:

答案 0 :(得分:1)

<CheckBox 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Your text"
        android:checked="true"
        />

checkbox.setChecked(true);