私はGoogle Plus
ページを持っています
https://plus.google.com/u/0/b/101839105638971401281/101839105638971401281/posts
とAndroidアプリケーション。このページをアプリで開きたいです。ブラウザを開きたくない!
これにより、ブラウザが開きます。
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を選択した場合、クラッシュは発生しません。