30
Como posso abrir um URL no navegador da web do Android a partir do meu aplicativo?
Como abrir um URL a partir do código no navegador da Web incorporado, e não no meu aplicativo? Eu tentei isso: 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(); …