タグ付けされた質問 「android-browser」

30
アプリケーションのURLをAndroidのWebブラウザーで開くにはどうすればよいですか?
アプリケーション内ではなく、組み込みのWebブラウザーでコードからURLを開く方法は? 私はこれを試しました: 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(); } しかし、私は例外を受け取りました: No activity found to handle Intent{action=android.intent.action.VIEW data =www.google.com

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.