我有一个Google Plus
页面
https://plus.google.com/u/0/b/101839105638971401281/101839105638971401281/posts
和一个安卓应用程序。我想在我的应用程序中打开此页面。我不想打开浏览器!
这将打开浏览器:
URL="https://plus.google.com/b/101839105638971401281/101839105638971401281/posts";
uri = Uri.parse(URL);
it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);
这崩溃了:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.google.android.apps.plus", "com.google.android.apps.plus.phone.UrlGatewayActivity");
intent.putExtra("customAppUri", "10183910563897140128");
startActivity(intent);
提前致谢!
[解决了]
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://plus.google.com/101839105638971401281/posts")));
使用此解决方案,用户可以选择 Google Plus APP 或打开浏览器。如果选择了APP,则不会崩溃。