tags:

views:

72

answers:

1

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.

+1  A: 

It sounds like you missed the Notepad tutorial which talks about creating, editing, and deleting items stored in SQLite.

TalkLittle
That was the first tutorial I looked at, unfortunately that was a while back and I forgot all about it.Thanks for the reminder.
chris