studio programacion mapview google example ejemplo android xml android-mapview android-studio android-maps-v2

programacion - Android Google Maps: errores de diseño XML



mapview android ejemplo (2)

Estoy tratando de que google maps v2 funcione en android usando android studio. Tengo todas mis llaves y la configuración manifiesta. Cuando intento crear un xml para la actividad real en la que aparecerá el mapa, recibo errores. Mi xml se ve así:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <fragment xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/map" android:layout_width="match_parent" android:layout_height="match_parent" class="com.google.android.gms.maps.SupportMapFragment"/> </RelativeLayout>

Mi error en el estudio de Android se ve así:


Esto me pasa a mi tambien. Simplemente limpia el proyecto.


hola debes usar este código en el archivo xml:

<?xml version="1.0" encoding="utf-8"?> <fragment xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/map" android:layout_width="fill_parent" android:layout_height="fill_parent" android:name="com.google.android.gms.maps.SupportMapFragment"/>