All the examples that I have read have only went over how to create one Activity based apps that allow for listing items and none of them have talked about how to drill down into a selected list item to perform various CRUD operations.
So my question is what is the best practice for this? Is it to set an id value in the intent (I haven't seen any examples do this) or should a ContentProvider be created and used?
If anyone knows of any good tutorials that would answer this question please let me know.