今天就跟大家聊聊有關如何在Android應用中調用系統(tǒng)聯(lián)系人界面,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)公司網(wǎng)站建設公司是一家服務多年做網(wǎng)站建設策劃設計制作的公司,為廣大用戶提供了做網(wǎng)站、成都做網(wǎng)站,成都網(wǎng)站設計,廣告投放平臺,成都做網(wǎng)站選成都創(chuàng)新互聯(lián)公司,貼合企業(yè)需求,高性價比,滿足客戶不同層次的需求一站式服務歡迎致電。
一、添加聯(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應用中調用系統(tǒng)聯(lián)系人界面有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。