12/03/2012, 07:30
|
| | Fecha de Ingreso: noviembre-2003 Ubicación: A Coruña
Mensajes: 89
Antigüedad: 21 años 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 |