GetMap() возвращает null на Android с помощью Google Maps API v2

#java #android #xml #api #google-maps

#java #Android #xml #API #google-карты

Вопрос:

У меня есть некоторые проблемы с Google Maps API V2. Я перепробовал много руководств и искал много ответов (включая переполнение стека), но все, что я нашел, не сработало. Я могу нарисовать карту с помощью XML — тега <fragment> . Нет проблем, это работает. Но когда я пытаюсь получить карту в MainActivity.java getMap() ответ null, и я не знаю почему.

MainActivity.java

 package com.example.testmaps;

import android.app.Activity;
import android.os.Bundle;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

public class MainActivity extends Activity {
 private GoogleMap mMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
    //HERE mMap IS NULL
    mMap.addMarker(new MarkerOptions()
            .position(new LatLng(10, 10))
            .title("Hello world"));
    }
}
 

activity_main.xml

 <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 
          android:id="@ id/map"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:name="com.google.android.gms.maps.MapFragment"/>

</RelativeLayout> 
 

Manifest.xml

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

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="19" />

    <uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<!-- The following two permissions are not required to use
     Google Maps Android API v2, but are recommended. -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

<uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.testmaps.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>
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="my_key" />
        <meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />
    </application>

</manifest>
 

Комментарии:

1. Вы не забыли добавить ключ API в свой AndroidManifest.xml ?

Ответ №1:

Добавьте свой КЛЮЧ API

 <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="AIzaSyA_YwwmN2h21nVVzuiQcpQsipZoAlaix7Z" />
     // place your API KEY
 

и вы можете написать, как показано ниже

  android.support.v4.app.FragmentManager myFM = getSupportFragmentManager();
 final SupportMapFragment myMAPF = (SupportMapFragment) myFM.findFragmentById(R.id.mapView);
 googleMap = myMAPF.getMap();
 

мой файл макета был похож

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_horizontal_margin" >

<fragment
    android:id="@ id/mapView"
    android:layout_width="match_parent"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_height="fill_parent"
    android:layout_alignParentTop="true" />

<Button
    android:padding="5dp"
    android:layout_margin="10dp"
    android:background="@drawable/button"
    android:id="@ id/refreshMap"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:text="@string/button_refresh_map" />

 </RelativeLayout>
 

Комментарии:

1. У меня есть эти метаданные. Смотрите на manifest.xml под тегом </activity> 🙂

2. Чувак, добавь свой КЛЮЧ API вместо ACTUAL_KEY. вот так <метаданные android:name=»com.google.android.maps.v2.API_KEY» android:значение=»AIzaSyA_YwwmN2h21nVVzuiQcpQsipZoAlaix7Z» />

3. Спасибо, я знаю, что x) я просто заменил свой фактический ключ на «my_key». У меня есть это в моем коде: <метаданные android:name=»com.google.android.maps.v2.API_KEY» android:значение=»AIzaSyA2IGAjcmD-rsXO44g3TR2z4jfg7AsxQMg» />

4. окончательная поддержка MapFragment myMAPF = (SupportMapFragment) myFM.findFragmentById(R.id.MapView); GoogleMap = myMAPF.GetMap(); Я использовал карту поддержки. Итак, приведенный выше код сработал для меня. Вы можете использовать окончательный фрагмент карты myMap = (MapFragment) myFM.findFragmentById(R.id.MapView); GoogleMap = myMap .GetMap();

5. Кажется, это работает! Большое вам спасибо! : p Я пробовал с поддержкой framgent, но «myMAPF» не был окончательным. Возможно, это