Android 调用系统联系人界面(添加联系人,添加已有联系人,编辑和修改)

Android 调用系统联系人界面(添加联系人,添加已有联系人,编辑和修改),第1张

概述一、添加联系人IntentaddIntent=newIntent(Intent.ACTION_INSERT,Uri.withAppendedPath(Uri.parse(\"content://com.android.contacts\"),\"contacts\"));

一、添加联系人

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);

二、添加到已有联系人

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============");

三、编辑联系人

Intent editIntent = new Intent(Intent.ACTION_EDIT,Uri.parse("content://com.androID.contacts/contacts/"+cb.getContactID()));            startActivity(editIntent);

四、删除联系人

//*************删除联系人******************                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 调用系统联系人界面(添加联系人,添加已有联系人,编辑和修改),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!

总结

以上是内存溢出为你收集整理的Android 调用系统联系人界面(添加联系人,添加已有联系人,编辑和修改)全部内容,希望文章能够帮你解决Android 调用系统联系人界面(添加联系人,添加已有联系人,编辑和修改)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1146746.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存