In ListAdapter, how can I add data to existing list?
submitList()
will only replace existing list with new one,
maybe a method to updating data something like this
adapter.addNewItem(list)
In ListAdapter, how can I add data to existing list?
submitList()
will only replace existing list with new one,
maybe a method to updating data something like this
adapter.addNewItem(list)
Copyright © 2021 Jogjafile Inc.
Instead of modifying data in
ListAdapter
, always update the datasource i.e list in your case and submit the updated list toListAdapter