1. ホーム
  2. android

[解決済み] アプリケーションからAndroidのWebブラウザでURLを開くにはどうすればよいですか?

2022-03-17 01:58:43

質問

コードから URL をアプリケーション内ではなく、内蔵の Web ブラウザで開くにはどうすればよいですか?

こんなことをやってみました。

try {
    Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(download_link));
    startActivity(myIntent);
} catch (ActivityNotFoundException e) {
    Toast.makeText(this, "No application can handle this request."
        + " Please install a webbrowser",  Toast.LENGTH_LONG).show();
    e.printStackTrace();
}

が、Exceptionが発生しました。

No activity found to handle Intent{action=android.intent.action.VIEW data =www.google.com

解決方法は?

これを試してみてください。

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);

私の場合はそれでうまくいきました。

足りない"http://"については、次のようにすればいいと思います。

if (!url.startsWith("http://") && !url.startsWith("https://"))
   url = "http://" + url;

また、ユーザーがURLを入力するEditTextには、あらかじめ"http://"を入れておくとよいでしょう。