3

我已经解决这个问题好几天了,没有变得更聪明。

在 main.xml 中,我收到一条错误消息:“在项目或库中找不到布局文件 com.google.android.maps.MapView 中引用的类”

这真的让我很困惑,因为我在 Google APIs [Android 2.3.3] maps.jar 中看到 MapView.class

对解决这个问题有什么想法吗?这真的让我很烦恼,我自己找不到解决方案。

我的 API 密钥是 Ver。2

我正在使用 Eclipse - Android 开发人员工具构建:v22.0.0-675183

主要的.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<com.google.android.maps.MapView
    android:id="@+id/mapView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:enabled="true"
    android:clickable="true"
    android:apiKey="AIzaSyCSeU48SfPfRRuA-3YycsVxd_s9MFV8g3M"
    />
</LinearLayout>

和清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tit.GPSLocator"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="18" />

<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />

<permission
android:name="com.tit.GPSLocator.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission  android:name="com.tit.GPSLocator.permission.MAPS_RECEIVE" />
<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" />    
<uses-permission android:name="android.permission.INTERNET" />

<application 
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:allowBackup="true">

    <uses-library android:name="com.google.android.maps" />
    <activity android:name="com.tit.GPSLocator.GPSLocatorActivity"
            android:label="@string/app_name">
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="AIzaSyCSeU48SfPfRRuA-3YycsVxd_s9MFV8g3M" />

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>
</manifest>
4

2 回答 2

0

最有可能的是,您一开始就不应该使用com.google.android.maps.MapView。这适用于已弃用的 Maps V1 API。您正在做的所有其他事情(尤其是您的 API 密钥)都来自Maps V2 API

于 2013-08-24T14:47:24.537 回答
0

好的,搬进去之后meta-data API keyactivity我再次清理了项目,我可以运行应用程序了。我在地图上得到了网格,但没有地图块:java.io.IOException: Server returned: 3但这是一个不同的问题。

于 2013-08-25T12:52:06.437 回答