如何从我的应用程序中打开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
3 回答
繁花不似锦
TA贡献1851条经验 获得超4个赞
final Intent intent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse(url));activity.startActivity(intent);
Intent.ACTION_VIEW
"android.intent.action.VIEW"
- 3 回答
- 0 关注
- 591 浏览
添加回答
举报
0/150
提交
取消