/**这个是我写的设置*/
private void setAllChecked(boolean isChecked){
for (int i = 0 ; i<recyclerView.getChildCount(); i++){
LinearLayout linearLayout = (LinearLayout)recyclerView.getChildAt(i);
CheckBox checkBox = linearLayout.findViewById(R.id.list_checkBox);
checkBox.setChecked(isChecked);
//Log.d(TAG,"选中--"+checkBox.isChecked() + "----"+ commonAdapter.getItemId(i) + "----" +recyclerView.getChildCount());
}
}
这么写是只能获设置当前可见的表项,其他的都设置不了