如何开始“查看联系人”安卓上的活动?
我想创建一个选项卡,其中包含用于查看联系人详细信息的选项卡。这就是我所做的:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将该权限添加到清单文件中,以便用户收到通知,您的应用程序将在安装应用程序时读取联系人。
看看这个:
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.
Take a look at this:
http://developer.android.com/guide/topics/manifest/manifest-intro.html#perms