Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/03/2012, 07:30
CroMag
 
Fecha de Ingreso: noviembre-2003
Ubicación: A Coruña
Mensajes: 89
Antigüedad: 20 años, 5 meses
Puntos: 0
Respuesta: Llamar a navegador web externo desde app android

Para quien le sirva, paso el codigo completo:

public void botonNav(View v) {

Intent browserIntent = new Intent("android.intent.action.VIEW",
Uri.parse("http://www.google.es"));
startActivity(browserIntent);


}

Asi si que me funciona.Gracias