how to retrieve the list of contacts in android

前端 未结 2 1417
滥情空心
滥情空心 2021-01-06 11:58

my purpose to retrieve the list of contacts (name, number) is recorded in a json object, to send via web service to the server

then I found the code to visit contact

2条回答
  •  盖世英雄少女心
    2021-01-06 12:33

    You can use the below query to retrieve the favourite contacts from Contacts DB

    Cursor cursor = this.managedQuery(ContactsContract.Contacts.CONTENT_URI, projection, "starred=?",new String[] {"1"}, null);
    

提交回复
热议问题