Hey folks! Im having problems with the content provider. Im trying to create a content provider.
- Is my URI parse been parse correctly?
public static final Uri CONTENT_URI = Uri.parse("content://data/data/one.two/databases");
this leads to my database as I want to extract data from it and show it in the list view. after which, i have to edit the manifest inserting the provider
- if I extend my class to ContentProvider, my database file will be kinda screwed up, is there an easier way?
however, it shows the error of not having the one.two.databases to exist. i kinda stuck here. please help!
THANKS ALOT.