问题描述
我有一些问题与谷歌地图API V2。我试过很多教程和搜查许多答案(包括堆栈溢出),但我发现没有工作。我可以绘制XML标记地图<片断>
。没问题,它的工作原理。但是,当我试图让在 MainActivity.java
的GetMap)地图(
返回null,我不知道为什么
MainActivity.java
包com.example.testmaps;进口android.app.Activity;
进口android.os.Bundle;进口com.google.android.gms.maps.GoogleMap;
进口com.google.android.gms.maps.MapFragment;
进口com.google.android.gms.maps.model.LatLng;
进口com.google.android.gms.maps.model.MarkerOptions;公共类MainActivity延伸活动{
私人GoogleMap的MMAP;
@覆盖
保护无效的onCreate(捆绑savedInstanceState){
super.onCreate(savedInstanceState);
的setContentView(R.layout.activity_main);
MMAP =((MapFragment)getFragmentManager()findFragmentById(R.id.map)。)的GetMap();
//这里MMAP IS NULL
mMap.addMarker(新的MarkerOptions()
.POSITION(新经纬度(10,10))
.title伪(的Hello world));
}
}
activity_main.xml中
<的RelativeLayout的xmlns:机器人=http://schemas.android.com/apk/res/android
的xmlns:工具=http://schemas.android.com/tools
机器人:layout_width =match_parent
机器人:layout_height =match_parent
工具:上下文=MainActivity。> <片段
机器人:ID =@ + ID /图
机器人:layout_width =match_parent
机器人:layout_height =match_parent
机器人:名字=com.google.android.gms.maps.MapFragment/>< / RelativeLayout的>
的Manifest.xml
<?XML版本=1.0编码=UTF-8&GT?;
<清单的xmlns:机器人=http://schemas.android.com/apk/res/android
包=com.example.testmaps
安卓版code =1
机器人:=的versionName1.0> <用途-SDK
安卓的minSdkVersion =11
机器人:targetSdkVersion =19/> <使用许可权的android:NAME =android.permission.INTERNET对/>
<使用许可权的android:NAME =android.permission.ACCESS_NETWORK_STATE/>
<使用许可权的android:NAME =android.permission.WRITE_EXTERNAL_STORAGE/>
<! - 不需要下面的两个权限使用
谷歌地图Android版API V2,但建议。 - >
<使用许可权的android:NAME =android.permission.ACCESS_COARSE_LOCATION/>
<使用许可权的android:NAME =android.permission.ACCESS_FINE_LOCATION/><用途特征
机器人:glEsVersion =0x00020000
机器人:要求=真/> <应用
机器人:allowBackup =真
机器人:图标=@绘制/ ic_launcher
机器人:标签=@字符串/ APP_NAME
机器人:主题=@风格/ AppTheme>
<活动
机器人:名字=com.example.testmaps.MainActivity
机器人:标签=@字符串/ APP_NAME>
&所述;意图滤光器>
<作用机器人:名字=android.intent.action.MAIN/> <类机器人:名字=android.intent.category.LAUNCHER/>
&所述; /意图滤光器>
< /活性GT;
&所述;元数据
机器人:名字=com.google.android.maps.v2.API_KEY
机器人:值=my_key/>
&所述;元数据
机器人:名字=com.google.android.gms.version
机器人:值=@整数/ GOOGLE_PLAY_SERVICES_VERSION/>
< /用途>< /清单>
添加您的API密钥
<元数据
机器人:名字=com.google.android.maps.v2.API_KEY
机器人:值=AIzaSyA_YwwmN2h21nVVzuiQcpQsipZoAlaix7Z/>
//把你的API密钥
,你可以写像下面
android.support.v4.app.FragmentManager myFM = getSupportFragmentManager();
最后SupportMapFragment myMAPF =(SupportMapFragment)myFM.findFragmentById(R.id.mapView);
GoogleMap的= myMAPF.getMap();
我的布局文件就像
<?XML版本=1.0编码=UTF-8&GT?;
<的RelativeLayout的xmlns:机器人=http://schemas.android.com/apk/res/android
机器人:layout_width =match_parent
机器人:layout_height =match_parent
机器人:方向=垂直
机器人:paddingBottom会=@扪/ activity_vertical_margin
机器人:paddingLeft =@扪/ activity_horizontal_margin
机器人:paddingRight =@扪/ activity_horizontal_margin
机器人:paddingTop =@扪/ activity_horizontal_margin><片段
机器人:ID =@ + ID /图形页面
机器人:layout_width =match_parent
机器人:名字=com.google.android.gms.maps.SupportMapFragment
机器人:layout_height =FILL_PARENT
机器人:layout_alignParentTop =真/><按钮
机器人:填充=5DP
机器人:layout_margin =10dp
机器人:背景=@绘制/按钮
机器人:ID =@ + ID / refreshMap
机器人:layout_width =WRAP_CONTENT
机器人:layout_height =WRAP_CONTENT
机器人:layout_alignParentBottom =真
机器人:layout_centerHorizontal =真
机器人:文字=@字符串/ button_refresh_map/> < / RelativeLayout的>
I have some problems with Google Maps API V2. I have tried many tutorials and searched many answers (include stack overflow) but all I have found was not work. I can draw a map with xml tag <fragment>
. No problem, it works. But when I try to get the map in MainActivity.java
getMap()
return null and I don't know why.
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>
Add your API KEY
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyA_YwwmN2h21nVVzuiQcpQsipZoAlaix7Z" />
// place your API KEY
and you can write like below
android.support.v4.app.FragmentManager myFM = getSupportFragmentManager();
final SupportMapFragment myMAPF = (SupportMapFragment) myFM.findFragmentById(R.id.mapView);
googleMap = myMAPF.getMap();
my layout file was like
<?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>
这篇关于的GetMap()在Android返回NULL与谷歌地图API第2版的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!