如图所示 点击 时间 今天的checkbox 如何让子的checkbox都被选中 求大神提供思路
phpcn_u15822017-07-06 10:38:18
谢遥。
监听checkbox事件,复写,操作子checkbox
自定义checkbox组件。自己写的,想怎么操作怎么操作。
CheckBox repeatChkBx = ( CheckBox ) findViewById( R.id.repeat_checkbox );
repeatChkBx.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if ( isChecked )
{
// perform logic
}
}
});
滿天的星座2017-07-06 10:38:18
在 RecyclerView 中使用 CheckBox 会有 ViewHolder 的复用问题,滑动之后复用的 CheckBox 会沿用之前的状态。
建议在绑定的数据实体里进行选中状态修改而不是直接去修改 CheckBox 的选中状态,同时在 bindData 里只根据数据的选中状态进行 CheckBox 的状态控制。
请问题主这边是两层 RecyclerView、ItemDecoration 还是不同的 ViewType 实现的?