Learn how to create lists in Android using the RecyclerView. Dive into RecyclerView components such as adapters and view holders, and leverage them to produce rich user interfaces as well as provide behavior that your users will expect.
there are a lot of very long gaps in most of the videos where code is being typed and there is no talking or any explanation. The sample project code is already available for the viewer - we don’t need to watch it being typed. Would really like to see these videos edited for:
speed up the typing - 2x or faster
during the typing add in some explanations for the code please. For example, why is override fun onMove() required in the Callback even if you are writing a RecyclerView that only enables swipe to delete and not moving the rows?
the delete functionality does not have a very clear UI. There is no indication while swiping that the row item is going to be deleted. Shouldn’t the UI paradigm show some red color and the word “delete” or something similar when swiping?
Please provide some explanation around the implementation for allowing swiping in only one direction. The JAVADOC is not very clear in this regard, or rather using the code provided in that doesn’t seem to work.