是否可以使用谷歌地图Android API v2在Android服装设备中显示谷歌地图?

时间:2014-08-22 03:16:37

标签: android google-maps

我想使用Google Maps Android API v2在Android版设备中显示谷歌地图。

我可以访问Google Play服务并获取可用状态。但是,在代码mGoogleMap = fragment.getMap();

之后,我收到了NullPointerException错误

//获取Google Play可用性状态

    int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());

    if(status!=ConnectionResult.SUCCESS){ // Google Play Services are not available

        ....

    }else { // Google Play Services are available

        // Getting reference to the SupportMapFragment
        SupportMapFragment fragment = ( SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);

        // Getting Google Map
        mGoogleMap = fragment.getMap();}

我的布局文件如下:

<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=".MyActivity" >
<fragment
    android:id="@+id/map"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    class="com.google.android.gms.maps.SupportMapFragment" />

0 个答案:

没有答案
相关问题