我有一些问题在Android开发中将tile加载到我的MapVIEw中.我在这里搜索并查看了类似的问题,但到目前为止没有运气.
我查看了here的说明并掌握了我的调试API密钥.我已将其输入到我的MapVIEw中.
我已经检查过我的模拟器和我的调试设备是否有互联网连接.
我已将我的清单文件中的Internet权限标记移动到应用程序标记之前.
我不知道还有什么要检查.
我也不确定发展这个的最好方法.似乎我无法使用正确签名的应用程序进行调试,因为调试密钥库需要相同的密码 – androID.这意味着每次我去发布版本时我都要更改密钥 – 这看起来非常脆弱!
有没有办法用我自己生成的地图API密钥开发和发布构建?
一些代码供您查看:
main.xml中:
<com.Google.androID.maps.MapVIEw androID:ID="@+ID/mapVIEw" androID:layout_height="fill_parent" androID:layout_wIDth="fill_parent" androID:APIKey="??:??:??:??:??:??:??:??:??:??:??:??:??:??:??:??" />
AndroIDManifest.xml中:
<manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:versionCode="1"androID:versionname="1.0" package="com.my.package.name"><uses-sdk androID:minSdkVersion="3"></uses-sdk><uses-permission androID:name="androID.permission.ACCESS_FINE_LOCATION" /><uses-permission androID:name="androID.permission.INTERNET" /><application androID:icon="@drawable/icon" androID:label="@string/app_name" androID:deBUGgable="true" > <activity androID:name=".MyMainClass" androID:label="@string/app_name" > <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> <uses-library androID:name="com.Google.androID.maps" /></application></manifest>
任何帮助非常感谢.
解决方法:
androID:APIKey=”??:??:??:??:??:??:??:??:??:??:??:??:??:??:??:??”
你在那里有冒号的事实表明,也许你误解了你应该粘贴的内容.
冒号位于签名密钥的MD5指纹中.然后,您需要将这些内容粘贴到form on a Google Web site中并获取实际的签名密钥,如下所示:
androID:APIKey="00yHj0k7_7vzHbUFXzY2j94lYYCqW3NAIW8EEEw"
总结 以上是内存溢出为你收集整理的Android MapView – 未使用Debug API密钥加载磁贴全部内容,希望文章能够帮你解决Android MapView – 未使用Debug API密钥加载磁贴所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)