android – 如何与特定的朋友打开VKontakte应用程序?

android – 如何与特定的朋友打开VKontakte应用程序?,第1张

概述背景 要与特定的Facebook好友打开Facebook应用,您可以使用此意图: final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format("fb://profile/%s", friendId))); LinkedIn的类似解决方案: final Intent intent = new Intent( 背景

要与特定的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应用程序?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1130097.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存