Android、Google Maps Android api、设置位置和地图类型

Posted

技术标签:

【中文标题】Android、Google Maps Android api、设置位置和地图类型【英文标题】:Android, Google Maps Android api, setting location and map type 【发布时间】:2016-03-13 23:46:53 【问题描述】:

我是 android 新手,并试图让我的应用在单击按钮时打开一个新活动,该活动使用 Google maps Android api 显示地图。

我能够在单击按钮时毫无问题地获得标准地图,但是当我尝试添加位置和地图类型时,我的应用程序因此错误而崩溃。

“原因:java.lang.NullPointerException:尝试在空对象上调用虚拟方法 'com.google.android.gms.maps.GoogleMap com.google.android.gms.maps.SupportMapFragment.getMap()'参考”

这是我的 Activity 指向的 xml 片段布局。

<?xml version="1.0" encoding="utf-8"?>

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map1"
    android:layout_
    android:layout_
    android:name="com.google.android.gms.maps.MapFragment"
    />

这是我的 java 代码。

map1 = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map1)).getMap();
        if (map1 == null)
            Toast.makeText(this, "No Maps", Toast.LENGTH_LONG).show();
        else
            map1.setMapType(GoogleMap.MAP_TYPE_HYBRID);
            final LatLng LOCATION_1 = new LatLng(37.7576171,-122.5776844);
            CameraPosition cameraPosition = new CameraPosition.Builder()
                .target(LOCATION_1)
                .zoom(17)
                .bearing(90)
                .tilt(30)
                .build();
      map1.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));

我已经进行了几个小时的研究,但我很茫然。我想知道我的清单中是否可能缺少某些东西?

任何帮助将不胜感激。

我的清单以防万一。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="...."
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Activity2">
        </activity>
        <activity
            android:name=".Activity3">
        </activity>


        <meta-data
            android:name="com.google.android.gms.version"
            android:value="8298000"
            tools:replace="android:value"/>
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="AIzaSyCCk5zREDbtWJD-tFru8xmRZow0ocVXIps"/>

    </application>


    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>


</manifest>

【问题讨论】:

【参考方案1】:

首先,稍微改一下代码,你是在xml中输入MapFragment,需要输入SupportMapFragment。

代码:

<?xml version="1.0" encoding="utf-8"?>

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map1"
android:layout_
android:layout_
android:name="com.google.android.gms.maps.SupportMapFragment"
/>

其次,根据谷歌地图文档,不推荐使用 getMap() 方法。因为,它并不总是返回非空值。它可以多次为空: https://developers.google.com/android/reference/com/google/android/gms/maps/SupportMapFragment.html#getMap()

使用getMapAsync()方法,该方法有回调机制。一旦地图准备好,它将回调。所以,它总是返回非空值。

完整代码:

SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map1);
mapFragment.getMapAsync(new OnMapReadyCallback() 
    @Override
    public void onMapReady(GoogleMap googleMap) 

        googleMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
        final LatLng LOCATION_1 = new LatLng(37.7576171,-122.5776844);
        CameraPosition cameraPosition = new CameraPosition.Builder()
            .target(LOCATION_1)
            .zoom(17)
            .bearing(90)
            .tilt(30)
            .build();
             googleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));

    
);

【讨论】:

以上是关于Android、Google Maps Android api、设置位置和地图类型的主要内容,如果未能解决你的问题,请参考以下文章

如何解决这个错误。 com.google.android.gms.tasks.task executors$zza 无法转换为 android.app.activity。我是 Java 和 Andro

Android studio v0.3.2, gradle, google maps v2.0 找不到类“com.google.android.gms.maps.MapFragment

com.google.android.gms.maps.MapFragment:无法解析符号“地图”

import com.google.android.maps.geopoint 无法解析

com.google.android.maps 在 Android Studio 中不存在

膨胀类 com.google.android.maps.MapView 时出错