update contact details on Android

前端 未结 3 426
再見小時候
再見小時候 2020-12-20 10:49

I would like my code to update contact details (like name, phone number, email, organization details, etc) in the android contact book. I was successful in

3条回答
  •  误落风尘
    2020-12-20 11:21

    In order to update any data in the contacts you need to know the existing id for that fields. Then I used the Builder class to obtain separate ContentProviderOperation objects for the various fields I wanted to update, add them to an arrayList and then use the ContentProvider.applyBatch() method

提交回复
热议问题