用于在安卓中访问联系人应用程序的特定 API



我正在制作一个应用程序,在该应用程序中,用户将speak CALL (person name)。但是,我无法理解如何访问contacts并自动呼叫该人。到目前为止,我只能拨打特定的号码。我的代码在下面提到。

if(msg.indexOf("call")!=-1){
    Intent i2=new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+"123456789"));
    startActivity(i2);
 }
 private void getContactList() {
  ContentResolver cr = getContentResolver();
  Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
        null, null, null, null);
if ((cur != null ? cur.getCount() : 0) > 0) {
    while (cur != null && cur.moveToNext()) {
        String id = cur.getString(
                cur.getColumnIndex(ContactsContract.Contacts._ID));
        String name = cur.getString(cur.getColumnIndex(
                ContactsContract.Contacts.DISPLAY_NAME));
        if (cur.getInt(cur.getColumnIndex(
                ContactsContract.Contacts.HAS_PHONE_NUMBER)) > 0) {
            Cursor pCur = cr.query(
                    ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
                    null,
                    ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = ?",
                    new String[]{id}, null);
            while (pCur.moveToNext()) {
                String phoneNo = pCur.getString(pCur.getColumnIndex(
                        ContactsContract.CommonDataKinds.Phone.NUMBER));
                Log.i(TAG, "Name: " + name);
                Log.i(TAG, "Phone Number: " + phoneNo);
            }
            pCur.close();
        }
    }
}
if(cur!=null){
    cur.close();
    }
}

您可以参考此堆栈溢出链接:

安卓获取所有联系人

http://saigeethamn.blogspot.com/2011/05/contacts-api-20-and-above-android.html

https://developer.android.com/training/contacts-provider/retrieve-names

您可以使用

以下库来获取联系人

实现 'com.github.tamir7.contacts:contacts:1.1.7'

https://github.com/tamir7/Contacts

最新更新