I\'m trying to refresh specific item in RecyclerView.
Story: Whenever user clicks on item, it shows AlertDialog. User can
I got to solve this issue by catching the position of the item that needed to be modified and then in the adapter call
public void refreshBlockOverlay(int position) {
notifyItemChanged(position);
}
, this will call onBindViewHolder(ViewHolder holder, int position) for this specific item at this specific position.