1

我正在努力将谷歌地图集成到我的安卓应用程序中。

它工作正常。

但是,几天后我的地图没有显示,我不知道为什么?

有人可以建议我为什么吗?

我没有更改代码中的任何内容。

提前致谢。

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey=""/>
4

3 回答 3

1

只需生成一个新密钥并在您的 xml 中再次使用它。它应该可以解决您的问题。

于 2013-01-04T12:28:25.210 回答
1

您是否刷新了您的 android 调试密钥?当您更改工作环境或只是从磁盘中删除 .android 文件夹时,就会发生这种情况。尝试为地图创建新键。为了您的方便,这里是命令:

C:\Program Files\Java\jdk1.7.0_07\jre\bin>keytool.exe -list -v -alias androiddebugkey -keystore C:\Users\User.android\debug.keystore -storepass android -keypass android

于 2013-01-04T12:41:38.507 回答
0

生成并添加您自己的密钥

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey="Your Maps API Key goes here"
/>

浏览这些链接,希望对您有所帮助

地图介绍链接

链接到为地图生成密钥

于 2013-01-30T15:56:20.493 回答