How to update/refresh specific item in RecyclerView

前端 未结 13 1293
没有蜡笔的小新
没有蜡笔的小新 2020-11-29 18:31

I\'m trying to refresh specific item in RecyclerView.

Story: Whenever user clicks on item, it shows AlertDialog. User can

相关标签:
13条回答
  • 2020-11-29 18:58

    if you are creating one object and adding it to the list that you use in your adapter , when you change one element of your list in the adapter all of your other items change too in other words its all about references and your list doesn't hold separate copies of that single object.

    0 讨论(0)
提交回复
热议问题