30
¿Cómo puedo abrir una URL en el navegador web de Android desde mi aplicación?
¿Cómo abrir una URL desde el código en el navegador web incorporado en lugar de dentro de mi aplicación? Intenté esto: 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(); …