MapView google maps api V2 looks blank only display grid with +/- button
我完成了所有步骤,我将 google-play-sevices 添加到我的项目中,我做了所有事情。我不知道有什么问题。我使用调试证书指纹使用
主活动:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
import android.os.Bundle; import android.app.Activity; import com.google.android.gms.common.GooglePlayServicesUtil; public class MainActivity extends Activity { @Override }else{ // nothing anymore, cuz android will take care of the rest (to remind user to update google play service). try{map.getUiSettings().setMyLocationButtonEnabled(false); MapsInitializer.initialize(this); } super.onResume(); super.onLowMemory(); |
布局:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <com.google.android.gms.maps.MapView </RelativeLayout> |
清单:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.voicesee" android:versionCode="1" <uses-sdk <permission <uses-permission android:name="com.example.voicesee.permission.MAPS_RECEIVE" /> <application <activity <category android:name="android.intent.category.LAUNCHER" /> <meta-data </application> |
谢谢你的帮助!!
我遇到了类似的问题,我的问题是因为我选择了错误的调试密钥库。我正在使用 ubuntu 机器。由于我以 root 身份打开 eclipse,因此 eclipse 中的默认密钥库位于我的根文件夹(/root/.android/.android/debug.keystore)中,而我正在使用我的用户文件夹中的调试密钥库创建 api 密钥。我添加了一个指向已回答问题的链接:
Google Maps V2 在 android 2.2 上显示空白屏幕
您确定吗:您在 Google 控制台中的项目打开了
Google Maps Android API v2
检查清单中的 api 密钥和应用程序的 SHA 密钥。您可以通过访问 console.developers.google.com 创建新的。
要查看 SHA 密钥Eclipse,请转到
–> windows>preferences>在左侧面板上选择android>点击build
查看 SHA 密钥 android studio
请参阅此链接 How to get the SHA-1 Fingerprint Certificate in Android Studio for debug mode?
在我的代码中,我用 supportMapfragment 更改了 mapview,我删除了我以前的 debug.keytool 并重建了它,然后我删除了我的旧 apikey 并创建了一个新密钥。看来我的问题是与 google play 服务的连接,因为它可以工作添加 GooglePlayServicesUtil.isGooglePlayServicesAvailable() 并在调用 setContentview()
之前验证与谷歌播放服务的连接后
您需要使用片段来封装您的地图,并且片段仅受 Android API 级别 11 及更高版本(3.0 及更高版本)支持。这可能是您的问题的原因。
正如这里提到的,您需要为您的 API 版本使用 SupportMapFragment。
这里是学习如何使用它的链接。
如果这不起作用,我猜是 API 密钥。之前我们遇到过加载网格和缩放按钮而不是地图的情况,关键是罪魁祸首。我会逐步完成此处的步骤,以确保您已正确完成所有操作(包括使用 google play 服务)
首先,我不明白您为什么在将地图放在
For a simpler method of displaying a Map use MapFragment (or SupportMapFragment) if you are looking to target earlier platforms.
其次,如果你已经这样做了,那么你在实现它时犯了一些错误,因为你放置了:
1
|
MapsInitializer.initialize(this);
|
方法在错误的地方,如文档所述:
Use this class to initialize the Google Maps Android API if features need to be used before obtaining a map. It must be called because some classes such as BitmapDescriptorFactory and CameraUpdateFactory need to be initialized.
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269002.html