How do u get a contact table like this?

How to query data in data table?

  • I used the following code to insert two row in data table: ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI).withValue( RawContacts.ACCOUNT_TYPE, null).withValue(RawContacts.ACCOUNT_NAME, null).build()); ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI).withValueBackReference( Data.RAW_CONTACT_ID, rawContactInsertIndex).withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE).withValue(StructuredName.DISPLAY_NAME, "a").build()); ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI).withValueBackReference( Data.RAW_CONTACT_ID, rawContactInsertIndex).withValue(Data.MIMETYPE, GroupMembership.CONTENT_ITEM_TYPE).withValue(CommonDataKinds.GroupMembership.GROUP_ROW_ID, "groupa").build()); So i got two new line in data table.But when i want to get a contact's groupId which display_name is a, i don`t know how to do. thanks

  • Answer:

    I feel more than content providers SQLite3 is a better option to work with.

hongbosb at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

I have found the answer myself. RawContactsEntity can solve the problem properly.

user674199

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.