I have a ContentProvider
with a DataBase having two columns named "_id"
and "_name"
. First, i am copying the id and name from ContactsContract.CommonDataKinds.Phone
. Then i need to change the data in my ContentProvider
. Then i need to access id
and name
again from ContactsContract.CommonDataKinds.Phone
but on the basis of those id
(s) which are now in my **ContentProvider**
.
I know how to use Join
in two tables. But don't know how can i do this using ContentProviders.