#如圖所示 點擊 時間 今天的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 實現的?