5

我正在创建我的第一个谷歌地图应用程序,但我遇到了一些麻烦,我不知道为什么。我得到一个 ClassNotFoundException。一般来说,我是 Android 新手,但这个错误让我很困惑。这是我的清单。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="edu.purdue.cs.cs180.safewalk"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.INTERNET" />

    <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=".RequestActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

以下是我的布局如何使用 MapView。我知道我的 API 密钥是正确的。

    <com.google.android.maps.MapView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:clickable="true"
        android:apiKey="@string/mapskey" />

最后,这是来自 logcat 的错误。

    12-03 13:11:25.861: E/AndroidRuntime(940): Caused by: java.lang.ClassNotFoundException: Didn't find class "edu.purdue.cs.cs180.safewalk.RequestActivity" on path: /system/framework/com.google.android.maps.jar:/data/app/edu.purdue.cs.cs180.safewalk-2.apk

编辑:对不起,清单没有完美复制。是的,包已经设置好了。我的虚拟设备设置为 Target: Google APIs (Google Inc.) - API Level 17。

4

2 回答 2

1

如果您尝试在模拟器中运行它,则需要定义您的 AVD,并将 Target 设置为Google APIs (Google Inc) - ...and not Android nn - ...

问候。

于 2012-12-03T18:29:57.417 回答
0

仅关闭项目并重新打开它。修理它。

奥兹

于 2013-01-25T11:39:49.353 回答