0
活性のボタンのonclick
このコード:ボタンをクリックしてRecyclerViewのすべてのチェックボックスを選択する方法?
if(v.getId()==recomendationSelectAllFriends.getId()){
recomendationAdapter.selectAll(resultEntities.size());
}
この方法アダプタで:e.isCheckedフィールドはカードのチェックボックスに制限され
public void selectAll(int size){
// what should be written here?
}
https://stackoverflow.com/questions/4876083/correct-way-to-check-all-checkboxesで
を書きます-in-listviewこれをチェックする – AAA