RecyclerView를 사용하여 표시 할 카드 목록을 만들고 있습니다. 여기서 각 카드에는 목록에서 해당 카드를 제거하는 버튼이 있습니다.
RecyclerView에서 카드를 제거하기 위해 notifyItemRemoved () 를 사용 하면 항목이 제거되고 잘 애니메이션되지만 목록의 데이터가 올바르게 업데이트되지 않습니다.
그 대신 notifyDataSetChanged () 로 전환하면 목록의 항목이 제거되고 올바르게 업데이트되지만 카드는 움직이지 않습니다.
누군가 notifyItemRemoved () 사용 경험이 있고 notifyDataSetChanged와 다르게 작동하는 이유를 알고 있습니까?
다음은 내가 사용중인 코드의 일부입니다.
private List<DetectedIssue> issues = new ArrayList<DetectedIssue>();
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
// - get element from your dataset at this position
// - replace the contents of the view with that element
if(position >0){
RiskViewHolder riskHolder = (RiskViewHolder)holder;
final int index = position - 1;
final DetectedIssue anIssue = issues.get(index);
riskHolder.button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
int index = issues.indexOf(anIssue);
issues.remove(anIssue);
notifyItemRemoved(index);
//notifyDataSetChanged();
} catch (SQLException e) {
e.printStackTrace();
}
}
});
}
}
@Override
public int getItemCount() {
return (issues.size()+1);
}