我正在努力将谷歌地图集成到我的Android应用程序中。
工作正常。
然而,几天后我的地图没有显示,我不知道为什么?
有人可以建议我为什么吗?
我的代码中没有更改任何内容。
提前致谢。
<?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=""/>
答案 0 :(得分:1)
只需生成一个新密钥并在xml中再次使用它。 应该解决您的问题。
答案 1 :(得分:1)
请查看此link
可以帮到你。
答案 2 :(得分:1)
你刷新了你的android调试密钥吗?当您更改工作环境或仅从磁盘中删除.android文件夹时会发生这种情况。尝试为地图创建新密钥。 为了您的方便,这里是命令:
C:\ Program Files \ Java \ jdk1.7.0_07 \ jre \ bin&gt; keytool.exe -list -v -alias androiddebugkey -keystore C:\ Users \ User.android \ debug.keystore -storepass android -keypass android
答案 3 :(得分: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"
/>
浏览这些链接,希望它可以帮助您