Preguntas etiquetadas con android-browser

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(); …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.