30
如何从我的应用程序在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