如何在android中链接G + View profile intent

时间:2014-08-13 05:40:20

标签: android google-plus

我已将G +集成到我的应用中。我正在尝试类似Google Plus或Playstore G +查看个人资料......

如果我点击查看个人资料。 Google Plus应用中的个人资料详情已打开。

有人知道如何调用此特定活动 - 我也想在我的应用程序中应用URI吗?

以下屏幕截图来自playstore app:

From Playstore App

1 个答案:

答案 0 :(得分:0)

最后找到了一种方法:

 startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://plus.google.com/"+userID+"/posts")));

这将提示用户通过浏览器或APP打开,然后它会相应地显示个人资料详细信息!

希望这对其他人有用!

谢谢!