要与特定的Facebook好友打开Facebook应用,您可以使用此意图:
final Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(String.format("fb://profile/%s",frIEndID)));
linkedIn的类似解决方案:
final Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(String.format("linkedin://profile/%s",frIEndID)));
我认为下一个适用于Google Plus(没有测试它,但看起来很有希望):
final Intent intent =new Intent(Intent.ACTION_VIEW,Uri.parse(String.format("https://plus.Google.com/%s/posts",frIEndID)));
这个问题
我试图找到如何使用这样的意图打开VKontakte(VK)社交网络应用程序,但找不到它.
有这样的意图吗?如果是这样,它是什么?
解决方法 接下来是开发人员的答案:Yes,it’s done the same way:
final Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(String.format("vkontakte://profile/%d",frIEndID)));
If you need to open a community,use the same URL but add the minus sign to the community ID.
Question answered here
总结以上是内存溢出为你收集整理的android – 如何与特定的朋友打开VKontakte应用程序?全部内容,希望文章能够帮你解决android – 如何与特定的朋友打开VKontakte应用程序?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)