我尝试了关于Android Maps V2 Quick Start的教程 但是当我运行应用程序时,会显示一个空白的地图屏幕。我的手机使用android 2.2.1。
这是logcat中显示的内容:
12-07 18:07:52.479: W/dalvikvm(1654): VFY: unable to resolve instance field 24
12-07 18:07:53.129: W/dalvikvm(1654): Unable to resolve superclass of Lmaps/a/du; (411)
12-07 18:07:53.129: W/dalvikvm(1654): Link of class 'Lmaps/a/du;' failed
12-07 18:07:53.139: W/dalvikvm(1654): Unable to resolve superclass of Lmaps/a/ej; (2363)
12-07 18:07:53.139: W/dalvikvm(1654): Link of class 'Lmaps/a/ej;' failed
12-07 18:07:53.139: W/dalvikvm(1654): Unable to resolve superclass of Lmaps/j/k; (2379)
12-07 18:07:53.139: W/dalvikvm(1654): Link of class 'Lmaps/j/k;' failed
12-07 18:07:53.149: E/dalvikvm(1654): Could not find class 'maps.j.k', referenced from method maps.y.ae.a
12-07 18:07:53.149: W/dalvikvm(1654): VFY: unable to resolve new-instance 3571 (Lmaps/j/k;) in Lmaps/y/ae;
12-07 18:07:53.389: W/dalvikvm(1654): VFY: unable to resolve direct method 14965: Ljava/io/IOException;.<init> (Ljava/lang/String;Ljava/lang/Throwable;)V
编辑:这是manifest.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eunice.mapstry"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
<permission android:name="com.eunice.mapstry.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="com.eunice.mapstry.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps" />
<activity
android:name="com.eunice.mapstry.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBt_JE6_XIVR8-t0HrbhskeLrAVxSJst6c"/>
</application>
</manifest>
编辑:我添加了一个google api控制台的图片:
答案 0 :(得分:7)
我终于找到了问题所在。我选错了调试密钥库。我正在使用ubuntu机器。由于我以root身份打开eclipse,eclipse中的默认密钥库位于我的根文件夹(/root/.android/.android/debug.keystore),而我正在使用我的用户文件夹中的debug keystore创建api密钥。我在根文件夹中使用调试密钥库创建了一个新的api密钥,它现在可以正常工作。
答案 1 :(得分:2)
确保您在https://code.google.com/apis/console
中启用了Google Maps Android API v2服务然后你很高兴:)
答案 2 :(得分:1)
我也在使用这些东西多久(证书,包名,API控制台等),直到我尝试从我的设备卸载应用程序,然后重新安装它,然后突然没事了。< / p>
答案 3 :(得分:1)
我遇到了同样的问题但却解决了这个问题。如果上述答案对您不起作用,可能会有所帮助。在我更改了我的应用程序包名称后,地图开始不显示。 (它发生在我更改我的包名之后)
这对我有用
答案 4 :(得分:0)
我有同样的问题,解决方法是删除debug.keystore。然后我做了一个
adb uninstall com.example.myapp
然后清理并再次运行该应用程序。
我认为问题是由于我在我的清单中复制并粘贴了一个虚拟API密钥,我首先使用它部署了应用程序。