无法使用 ContentProvoider 更新联系人
Uri name=null;
String []whereargs={"Sameer Ahmad"};
name=Uri.withAppendedPath(People.CONTENT_URI,People.Phones.CONTENT_DIRECTORY);
cv1.put(People.NAME,"Tofeeq Ahmad");
int i1=0;
i1=getContentResolver().update(name,cv1,"name=?",whereargs);
}
catch(Exception e){
e.getMessage();
我正在尝试通过 URi 更新电话号码,但它显示异常:无法更新//联系人/人员/电话。
插入时出现相同错误。
- 我想创建可从每个应用程序访问的共享数据库
Uri name=null;
String []whereargs={"Sameer Ahmad"};
name=Uri.withAppendedPath(People.CONTENT_URI,People.Phones.CONTENT_DIRECTORY);
cv1.put(People.NAME,"Tofeeq Ahmad");
int i1=0;
i1=getContentResolver().update(name,cv1,"name=?",whereargs);
}
catch(Exception e){
e.getMessage();
I am trying to update a phone numder by URi but its showing the Exception:Cannot Update//Contacts/people/phone.
Same error in inserting.
- I want to create shared data base which will be accessible from every application
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否已在清单中声明了必要的许可?
have you declared the necessary permission in your manifest?