2012-12-03 103 views
5

我正在創建我的第一個Google地圖應用,但遇到了一些麻煩,我找不到原因。我得到一個ClassNotFoundException。一般來說,我是Android的新手,但是這個錯誤讓我難堪。 這是我的清單。Android Google Maps ClassNotFoundException

<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 API(Google Inc.) - API Level 17.

+1

您是否在清單中設置了相同的包名? – AndroidLearner

+1

例如'' – dmon

回答

1

如果您嘗試在模擬器中運行它,則需要定義您的AVD並將Target設置爲Google APIs (Google Inc) - ...而不是Android nn - ...

問候。

0

只關閉項目並重新打開它。修理它。

Orz