我正在創建我的第一個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.
您是否在清單中設置了相同的包名? – AndroidLearner
例如'' –
dmon