一、添加聯(lián)系人
Intent addIntent = new Intent(Intent.ACTION_INSERT,Uri.withAppendedPath(Uri.parse("content://com.android.contacts"), "contacts")); addIntent.setType("vnd.android.cursor.dir/person"); addIntent.setType("vnd.android.cursor.dir/contact"); addIntent.setType("vnd.android.cursor.dir/raw_contact");addIntent.putExtra(ContactsContract.Intents.Insert.NAME,number);名稱: addIntent.putExtra(android.provider.ContactsContract.Intents.Insert.PHONE, numberForNewConstant);電話: startActivity(addIntent);二、添加到已有聯(lián)系人
LogUtil.logI("================btnAddToOladContact====================="); Intent oldConstantIntent = new Intent(Intent.ACTION_INSERT_OR_EDIT); oldConstantIntent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE); oldConstantIntent.putExtra(ContactsContract.Intents.Insert.PHONE, numberForNewConstant); oldConstantIntent.putExtra(ContactsContract.Intents.Insert.PHONE_TYPE, 3); startActivity(oldConstantIntent); if(oldConstantIntent.resolveActivity(getActivity().getPackageManager()) != null){ LogUtil.logI("================btnAddToOladContact=========yes============"); startActivity(oldConstantIntent); }else LogUtil.logI("================btnAddToOladContact=========no============");三、編輯聯(lián)系人
Intent editIntent = new Intent(Intent.ACTION_EDIT,Uri.parse("content://com.android.contacts/contacts/"+cb.getContactId())); startActivity(editIntent);四、刪除聯(lián)系人
//*************刪除聯(lián)系人****************** Uri deleteUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, cb.getContactId()); Uri lookupUri = ContactsContract.Contacts.getLookupUri(ContactsDetailActivity.this.getContentResolver(), deleteUri); if (lookupUri != Uri.EMPTY) { int del = ContactsDetailActivity.this.getContentResolver().delete(deleteUri, null, null); LogUtil.logI("==========popupMenu============del:"+del); }以上所述是小編給大家介紹的Android 調(diào)用系統(tǒng)聯(lián)系人界面(添加聯(lián)系人,添加已有聯(lián)系人,編輯和修改),希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)武林網(wǎng)網(wǎng)站的支持!
新聞熱點(diǎn)
疑難解答
圖片精選