PDA

Ver la Versión Completa : [ CONSULTA ] Ayuda con las acciones de los Intent.


shao
29/09/12, 02:01:08
Hola,
estoy intentando lanzar estos dos intent implícitos pero no me deja...se me cierra la aplicacion...sabeis por qué es????
El código que lanzo es el siguiente:
public void llamar(View v){
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:666-66-666")); //incluso sin guiones
startActivity(intent);
}
public void googleMaps(View v){
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("geo:41.656313,-0.877351"));
startActivity(intent);

Saludos.