我在我的应用程序中按照sut up a Google Map的所有步骤创建了一个调试密钥。 问题是,当我第一次使用eclipse在调试模式下运行应用程序时,一切都运行正常但后来如果我重新启动应用程序(不使用eclipse但是从我家),地图不再起作用了,它甚至都没有出现...它只显示一个灰色页面。
MY MANIFEST
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar"
android:debuggable="true" >
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="MY_KEY" />
我的代码
googleMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
// Check if we were successful in obtaining the map.
if (googleMap != null) {
googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(latitude, longitude), zoom), 3000, null);
googleMap.clear();
MarkerOptions marker = new MarkerOptions().title(values[0]).snippet(values[1]).position(new LatLng(latitude, longitude));
googleMap.setInfoWindowAdapter(new Adapter_Marker(context));
googleMap.setOnInfoWindowClickListener(new OnInfoWindowClickListener() {
@Override
public void onInfoWindowClick(Marker arg0) {
EDU.infosDialog(context, fieldNames, infos);
}
});
googleMap.addMarker(marker).showInfoWindow();
MY_LAYOUT
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout="@layout/bar_messina" />
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
为什么????
答案 0 :(得分:1)
SHA-1键与软件本身相关(在本例中为eclipse)。如果项目在不同的PC软件上运行。我怀疑SHA-1密钥是不同的。更改SHA-1键参考您的软件,看它是否有帮助。