2

我收到带有以下代码的 NullPointerException:

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());
    }

NullPointerException 发生的行是这行代码:

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

我没有将我的 mMap 变量初始化为 null。我的问题是什么?

4

3 回答 3

7

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();
于 2013-06-22T23:33:51.173 回答
4

尝试检查您在 Activity 的 XML 中创建的 MapFragment。检查我的;它正在工作。

...

<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" />

...

你的不一样吗?此外,您检查了是否在 AndroidManifest.xml 上放置了正确的权限和元数据?

这是许可:

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

这是元数据部分:

<application>

    ...

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

</application>

我希望这可以帮助你!

于 2013-05-16T16:02:21.467 回答
0

您可能在 manifest.xml 中遗漏了这个
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>

于 2015-05-10T14:38:47.380 回答