ฉันกำลังพยายามอัปเดตรายการของ recycleview โดยใช้ informDataSetChanged ()
นี่คือเมธอด onBindViewHolder () ของฉันในอะแดปเตอร์ recycleview
@Override
public void onBindViewHolder(ViewHolder viewHolder, int position) {
//checkbox view listener
viewHolder.getCheckbox().setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
//update list items
notifyDataSetChanged();
}
});
}
สิ่งที่ฉันต้องการทำคืออัปเดตรายการหลังจากฉันทำเครื่องหมายในช่อง ฉันได้รับข้อยกเว้นที่ผิดกฎหมายแม้ว่า:"Cannot call this method while RecyclerView is computing a layout or scrolling"
java.lang.IllegalStateException: Cannot call this method while RecyclerView is computing a layout or scrolling
at android.support.v7.widget.RecyclerView.assertNotInLayoutOrScroll(RecyclerView.java:1462)
at android.support.v7.widget.RecyclerView$RecyclerViewDataObserver.onChanged(RecyclerView.java:2982)
at android.support.v7.widget.RecyclerView$AdapterDataObservable.notifyChanged(RecyclerView.java:7493)
at android.support.v7.widget.RecyclerView$Adapter.notifyDataSetChanged(RecyclerView.java:4338)
at com.app.myapp.screens.RecycleAdapter.onRowSelect(RecycleAdapter.java:111)
ฉันยังใช้ alertItemChanged () ข้อยกเว้นเดียวกัน วิธีที่เป็นความลับในการอัปเดตเพื่อแจ้งอแด็ปเตอร์ว่ามีอะไรเปลี่ยนแปลงหรือไม่?