猿问

如何从我的应用程序中打开Android浏览器中的URL?

如何从我的应用程序中打开Android浏览器中的URL?

如何在内置的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


小唯快跑啊
浏览 592回答 3
3回答

繁花不似锦

在2.3中,我的运气更好final Intent intent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse(url));activity.startActivity(intent);不同之处在于使用Intent.ACTION_VIEW而不是字符串"android.intent.action.VIEW"
随时随地看视频慕课网APP

相关分类

Android
我要回答