Android 写入联系人
可能的重复:
如何在 android 中添加新联系人
我如何添加姓名联系人? 我有两个旋转器,一个用于名字,一个用于姓氏。分配的变量是 linkname1 和 linkname2。当用户按下“确定”按钮(这些都在对话框中)时,名称(linkname1 +“”+ linkname2)应添加到联系人中。我可以读取联系人信息,但如何写入呢?
感谢
更新: 我也尝试过这个:
newname = linkname1 + " " + linkname2;
ContentValues values = new ContentValues();
vales.put(ContactsContract.Contacts.DISPLAY_NAME, newname);
和这个:
StringBuffer strBuf = new StringBuffer();
strBuf.append(linkname1);
strBuf.append(" ");
strBuf.append(linkname2);
ContentValues values = new ContentValues();
values.put(ContactsContract.Contacts.DISPLAY_NAME, strBuf.toString());
但是新名称没有出现在联系人列表中。
Possible Duplicate:
How to add new contacts in android
how can i add a name to the contacts?
I have two spinners, one for the firstname and one for the lastname. The assigned variables are linkname1 and linkname2. When user pushes the OK button (these are all in a dialog), the name (linkname1 + " " + linkname2) should be added to the contacts. I can read the contacts but how do i write it?
Thanks
Update:
I also tried this:
newname = linkname1 + " " + linkname2;
ContentValues values = new ContentValues();
vales.put(ContactsContract.Contacts.DISPLAY_NAME, newname);
and this:
StringBuffer strBuf = new StringBuffer();
strBuf.append(linkname1);
strBuf.append(" ");
strBuf.append(linkname2);
ContentValues values = new ContentValues();
values.put(ContactsContract.Contacts.DISPLAY_NAME, strBuf.toString());
But the new name is not appearing in the contact list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该内容提供商虽然仍然可以工作,但在 2.2 中已被联系人合同取代。以下代码将与新的联系人合约提供商一起使用:
您必须从 AccountManager 服务。通过选择帐户(例如本地或 Google)或提示用户。
That content provider although will still work was replaced with Contacts Contracts in 2.2. The following code will work with new contacts contracts providers:
The Account Name and Type you will have to query from the AccountManager service. Either by choosing the an account (e.g. Local or Google) or prompting the user.
Android 操作方法(创建新联系人):
http://www.lacherstorfer.at/haris_blog/2008/03/android-howto-create-a-new-con.html
请务必查看注释中的代码编辑,可能有助于修复取决于版本。
Android how-to (create a new contact):
http://www.lacherstorfer.at/haris_blog/2008/03/android-howto-create-a-new-con.html
Be sure to look at the code edit in the comments, may help fix depending on version.