无法使用 ContentProvoider 更新联系人

发布于 2024-11-06 12:51:23 字数 460 浏览 0 评论 0原文

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 更新电话号码,但它显示异常:无法更新//联系人/人员/电话。插入时出现相同错误。

  1. 我想创建可从每个应用程序访问的共享数据库
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.

  1. I want to create shared data base which will be accessible from every application

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

⊕婉儿 2024-11-13 12:51:23

您是否已在清单中声明了必要的许可?

<uses-permission android:name="android.permission.WRITE_CONTACTS" />

have you declared the necessary permission in your manifest?

<uses-permission android:name="android.permission.WRITE_CONTACTS" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文