您好我正在开发简单的Android应用程序,我在其中使用android mapV2。所以在Google API控制台上,我创建了一个项目,而不是为我的应用程序创建了新密钥。所以我的应用程序清单看起来像:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.maptestapp"
android:versionCode="1"
android:versionName="1.0" >
<permission
android:name="com.example.maptestapp.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.maptestapp.permission.MAPS_RECEIVE" />
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Required to show current location -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<!-- Required OpenGL ES 2.0. for Maps V2 -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity
android:name="com.example.maptestapp.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppBaseTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Goolge API Key -->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyC7945EdDYMoMHZAYNvNXbVSl1NSZrWCfs" />
</application>
</manifest>
所以我定义了权限并定义了元数据。在布局中我试图显示
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
现在我尝试显示我的活动,它会显示以下错误:
12-24 22:59:54.345: E/Google Maps Android API(28739): Authorization failure. Please see https://developers.google.com/maps/documentation/android/start for how to correctly set up the map.
12-24 22:59:54.345: E/Google Maps Android API(28739): Ensure that the following correspond to what is in the API Console: Package Name: com.example.maptestapp, API Key: AIzaSyZAYNvNXbVSl1NSZrWCfs, Certificate Fingerprint: 096388A528A6F8347914D
它不呈现任何地图视图。需要帮忙。谢谢。
答案 0 :(得分:1)
请尝试下面显示分步说明的链接,其中显示了如何使用谷歌地图v2。Try this
答案 1 :(得分:0)
您的API密钥错误。该错误解释了您需要做什么:
请看 https://developers.google.com/maps/documentation/android/start 如何正确设置地图。
确保以下内容与API控制台中的内容相对应: 包名称:com.example.maptestapp, API密钥:AIzaSyZAYNvNXbVSl1NSZrWCfs, 证书指纹:096388A528A6F8347914D