Open Google Plus Page Via Intent In Android

前端 未结 6 1252
情书的邮戳
情书的邮戳 2020-12-13 19:53

I have a Google Plus page

https://plus.google.com/u/0/b/101839105638971401281/101839105638971401281/posts

and an Android application.

6条回答
  •  执笔经年
    2020-12-13 20:29

    Why not just Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); . Android OS queries all Applications that can handle a specific Uri. Google+, as an app, is programmed to be able to handle the Uri you are requesting. So it will show up as an option in a chooser (or just go to it if the user has already selected the Google+ app to be default for that Uri.

提交回复
热议问题