5

初めての Google マップ アプリを作成していますが、問題が発生して原因がわかりません。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

エミュレーターで実行しようとしている場合は、ターゲットを に設定しGoogle APIs (Google Inc) - ...、 ではなくAVD を定義する必要がありますAndroid nn - ...

よろしく。

于 2012-12-03T18:29:57.417 に答える
0

プロジェクトのみを閉じて、再度開きます。修理する。

オルズ

于 2013-01-25T11:39:49.353 に答える