我执行所有步骤,我将google-play-sevices添加到我的项目中,我做了所有事情。我不知道是什么问题。我使用调试证书指纹在eclipse中使用SHA1
指纹创建我的api密钥窗户>偏好>机器人;我正在使用lg E400 con android 2.3.6
MainActivity:
import android.os.Bundle;
import android.app.Activity;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapView;
import com.google.android.gms.maps.MapsInitializer;
public class MainActivity extends Activity {
GoogleMap map;
MapView m;
com.google.android.gms.maps.Projection projection;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
m=(MapView) findViewById(R.id.mapview);
m.onCreate(savedInstanceState);
map = m.getMap();
if (map != null) {
// The Map is verified. It is now safe to manipulate the map.
}else{
// check if google play service in the device is not available or out-dated.
GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
// nothing anymore, cuz android will take care of the rest (to remind user to update google play service).
}
try{map.getUiSettings().setMyLocationButtonEnabled(false);
map.setMyLocationEnabled(true);
}catch(Exception ex){ex.printStackTrace();}
MapsInitializer.initialize(this);
}
@Override
public void onResume() {
super.onResume();
m.onResume();
}
@Override
public void onDestroy() {
super.onDestroy();
m.onDestroy();
}
@Override
public void onLowMemory() {
super.onLowMemory();
m.onLowMemory();
}
@Override
public void onSaveInstanceState(Bundle outState){
super.onSaveInstanceState(outState);
m.onSaveInstanceState(outState);
}
}
布局:
<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" >
<com.google.android.gms.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</RelativeLayout>
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.voicesee"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="15" />
<permission
android:name="com.example.voicesee.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.voicesee.permission.MAPS_RECEIVE" />
<!-- Copied from Google Maps Library/AndroidManifest.xml. -->
<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"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!-- 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" >
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.example.voicesee.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="AIzaSyAguDjIFiVWi18ll7Yh0oa8C7hWju1PUzI"/>
</application>
感谢您的帮助!!
答案 0 :(得分:1)
您确定:Google Console中的项目打开了
Google Maps Android API v2
答案 1 :(得分:1)
我有类似的问题,我的问题是因为我选错了调试密钥库。我正在使用ubuntu机器。由于我以root身份打开eclipse,eclipse中的默认密钥库位于我的根文件夹(/root/.android/.android/debug.keystore),而我正在使用我的用户文件夹中的debug keystore创建api密钥。我添加了一个回答问题的链接: Google Maps V2 shows blank screen on android 2.2
答案 2 :(得分:0)
首先,我不明白为什么在将地图放在MapView
时使用Acitivity
,因为当你这样做时,显示地图的难度更大,Google的{{1} 3}}状态:
如果您希望定位早期平台,有关显示Map的更简单方法,请使用MapFragment(或SupportMapFragment)。
其次,如果你已经这样做了,那么你在实现它时会犯一些错误,因为你放置了:
MapsInitializer.initialize(this);
方法在错误的地方,如documentation状态:
如果在获取地图之前需要使用功能,请使用此类初始化Google Maps Android API。必须调用它,因为需要初始化一些类,如BitmapDescriptorFactory和CameraUpdateFactory。
答案 3 :(得分:0)
您将需要使用片段来封装您的地图,并且只有Android API级别11及更高版本(3.0及更高版本)支持片段。这可能是您的问题的原因。
如上所述here,您需要为您的API版本使用SupportMapFragment。
Here是了解如何使用它的链接。
如果这不起作用,我猜是API密钥。我们之前有一个情况,网格和缩放按钮加载而不是地图,而关键是罪魁祸首。我会逐步完成here步骤,以确保您已正确完成所有操作(包括使用Google Play服务)
答案 4 :(得分:0)
在我的代码中,我使用supportMapfragment更改了mapview,我删除了我之前的debug.keytool并重建了它然后我删除了我的旧apikey并创建了一个新密钥。似乎我的问题是与谷歌播放服务的连接,因为它的工作原理添加GooglePlayServicesUtil.isGooglePlayServicesAvailable()并在调用setContentview()之前验证与google play服务的连接
答案 5 :(得分:0)
检查应用程序的清单和SHA密钥中的api密钥。您可以通过访问console.developers.google.com来创建新密钥。
要看到SHA键eclipse转到 - &GT; Windows&gt;偏好设置&gt;在左侧面板上选择Android&gt;点击构建
要查看SHA键android studio 请参阅此链接How to get the SHA-1 fingerprint certificate in Android Studio for debug mode?