如何开始“查看联系人”安卓上的活动?

发布于 2024-09-02 05:15:34 字数 332 浏览 2 评论 0原文

我想创建一个选项卡,其中包含用于查看联系人详细信息的选项卡。这就是我所做的:

    intent = new Intent(Intent.ACTION_VIEW, Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_URI, ""+contactId));
    nativeInfo = tabHost.newTabSpec("native info").setIndicator("N Info").setContent(intent);

它抛出安全异常。

我很感激你的帮助。

谢谢。

I want to create a tab which contains a tab for viewing contact detail. Here is what i did:

    intent = new Intent(Intent.ACTION_VIEW, Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_URI, ""+contactId));
    nativeInfo = tabHost.newTabSpec("native info").setIndicator("N Info").setContent(intent);

It throw security exception.

I appreciate your help.

Thanks.

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

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

发布评论

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

评论(1

·深蓝 2024-09-09 05:15:34

您需要将该权限添加到清单文件中,以便用户收到通知,您的应用程序将在安装应用程序时读取联系人。

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

看看这个:
http://developer.android.com/guide/topics/清单/manifest-intro.html#perms

You need to add that permission to your manifest file, so that the user gets notified your app will read contacts when the app is installed.

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

Take a look at this:
http://developer.android.com/guide/topics/manifest/manifest-intro.html#perms

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