2 votes

MapFragment - NullPointerException - Google Maps V2 - Android

J'obtiens une NullPointerException avec le code suivant :

private ProjectionProxy proxy = new ProjectionProxy();
private GoogleMap mMap = null;
private Context context = this;

@Override
protected void onCreate(Bundle load) { 
    super.onCreate(load);

    setContentView(R.layout.fragment_ride_tracking);

    //mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.myMapView)).getMap();

    mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();

    int result = GooglePlayServicesUtil.isGooglePlayServicesAvailable(context);

    mMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
    mMap.setMyLocationEnabled(true);

    //SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.myMapView);
    //mMap = mapFragment.getMap();

    Log.e("RideTracking", "Google Map VALUE:"+mMap);

    if (mMap != null) { 
        proxy.setProjection(mMap.getProjection());
    }

La ligne où se produit l'exception NullPointerException est cette ligne de code :

mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();

Je n'initialise pas ma variable mMap à null. Quel est le problème ?

7voto

MainActivity.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="match_parent"
    android:layout_height="match_parent"
    android:name="com.google.android.gms.maps.SupportMapFragment"/>

MainActivity.java :

private GoogleMap googleMap;
googleMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();

4voto

devrique Points 496

Essayez de vérifier le MapFragment que vous avez créé dans le XML de l'activité. Vérifiez le mien ; il fonctionne.

...

<fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.MapFragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

...

Le vôtre est-il différent ? Par ailleurs, avez-vous vérifié que vous avez mis les bonnes permissions et métadonnées dans le fichier AndroidManifest.xml ?

Voici l'autorisation :

<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

Et voici la section des métadonnées :

<application>

    ...

    <meta-data android:name="com.google.android.maps.v2.API_KEY"
               android:value="HERE GOES YOUR API KEY" />

</application>

J'espère que cela vous aidera !

0voto

user3013823 Points 161

Il manque peut-être ceci dans le fichier manifest.xml
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X