我使用Google地图开发了一个Android应用程序。当我使用我的设备甚至模拟器检查时,地图工作正常。但当我把它交付给客户时,他只说“没有瓷砖显示,只有网格线和左下角的Google徽标”。可能有什么不对?
答案 0 :(得分:2)
那是因为您没有为Google地图小部件提供正确的API KEY。
签署应用程序时,必须使用相同的密钥库并获取API密钥。您获取用于签署应用程序的密钥库的MD5指纹到此处,http://code.google.com/android/maps-api-signup.html放置指纹并获取API密钥,然后在地图窗口小部件中
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
android:id="@+id/mapView" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:apiKey="0G0LHKCCJvhmNvdpZijAqg76V63Cs6DTBbq2-Pw"
android:enabled="true" android:clickable="true" />
放api_key