Google map displaying only blank tiles android(谷歌地图只显示空白瓷砖android)
问题描述
我已经在我的应用程序中实现了谷歌地图.但它只显示空白网格.我已经在 AndroidManifest.xml 文件中进行了更改,并且还在地图活动的布局文件中包含了 API 密钥.
I have implemented google map in my app.But its display only blank grids.I have done changes in AndroidManifest.xml file and also included API key in layout file of map activity.
推荐答案
这可能听起来很傻,但我一直遇到这个问题,直到我意识到 <uses-permission>
标签需要将子级引导到 <manifest>
元素,而不是 <application>
元素.我错误地将它们放在 <uses-library>
标记之后.所以你的 AndroidManifest.xml 文件的最终结构应该是这样的:
This may sound silly, but I kept encountering this problem until I realized that the <uses-permission>
tags need to be direct children to the <manifest>
element, rather than the <application>
element. I had erroneously been putting them right after the <uses-library>
tag. So the final structure of your AndroidManifest.xml file should be something like this:
<?xml version="1.0" encoding="utf-8"?>
<manifest ... >
<uses-sdk ... />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<application ... >
<activity ... >
<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>
希望这对犯同样错误的人有所帮助!
Hope this helps anyone who was making the same mistake!
这篇关于谷歌地图只显示空白瓷砖android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:谷歌地图只显示空白瓷砖android
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01