I am struggling to find a Android official document for updating recycler view/dynamic list items upon a delete item operation. This for Java primarily, or Kotlin if applicable.
This is the only doc section I found and the one listed below it. The examples appear to lack this info too.
https://developer.android.com/develop/ui/views/layout/recyclerview#additional-resources
I know how to do it from past experience and other guides, but I'm trying to share an official reference from Android with a student of mine.
All of the docs I have seen just demonstrate adding items to a list but not deleting them.
There also appear to be no docs that show refreshing the list after an item has been deleted/added (i.e. notifyDataSetChanged and related functions)
Where are the official docs?