如何从我的应用程序中打开Android浏览器中的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
繁花不似锦
相关分类