什么原因导致Android中的ClassNotFoundException?

时间:2011-03-25 19:12:19

标签: android

我不明白这个例外背后可能是什么。它是由我的应用程序的一个用户匿名报告的,我无法重现它。

java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{cz.fhejl.pubtran/cz.fhejl.pubtran.CustomMainActivity}: java.lang.ClassNotFoundException: cz.fhejl.pubtran.CustomMainActivity in loader dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/cz.fhejl.pubtran-2.apk]
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
at android.app.ActivityThread.access$2300(ActivityThread.java:125)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.ClassNotFoundException: cz.fhejl.pubtran.CustomMainActivity in loader dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/cz.fhejl.pubtran-2.apk]
at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2577)
... 11 more

我的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="cz.fhejl.pubtran"
    android:versionCode="38"
    android:versionName="3.6"
    android:installLocation="auto">

    <application
        android:icon="@drawable/icon"
        android:label="@string/appName"
        android:theme="@style/Theme.Pubtran">
        <activity
            android:name="cz.fhejl.pubtran.CustomMainActivity">
            <intent-filter>
                <action
                    android:name="android.intent.action.MAIN" />
                <category
                    android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <intent-filter>
                <action
                    android:name="cz.fhejl.pubtran.MAIN_ACTIVITY" />
                <category
                    android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="cz.fhejl.pubtran.CustomResultsActivity">
            <intent-filter>
                <action
                    android:name="cz.fhejl.pubtran.RESULTS_ACTIVITY" />
                <category
                    android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="cz.fhejl.pubtran.JourneyActivity" />
        <activity
            android:name="cz.fhejl.pubtran.PreferencesActivity"
            android:theme="@android:style/Theme.Light"
            android:label="@string/settings" />
        <activity
            android:name="cz.fhejl.pubtran.MapActivity" />
        <activity
            android:name="cz.fhejl.pubtran.LanguageActivity" />
        <activity
            android:name="cz.fhejl.pubtran.FavouritesActivity" />
        <service
            android:name="cz.fhejl.pubtran.MapDownloaderService" />
        <uses-library
            android:name="com.google.android.maps" />
    </application>

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="8" />

    <uses-permission
        android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission
        android:name="android.permission.BROADCAST_STICKY" />
    <uses-permission
        android:name="android.permission.INTERNET" />
    <uses-permission
        android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <uses-feature
        android:name="android.hardware.location.network"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.location.gps"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.touchscreen"
        android:required="true" />
</manifest>

2 个答案:

答案 0 :(得分:3)

升级到最新的ADT / SDK后,今天出现了这样的问题。另外对我来说例外是

Unable to instantiate activity

我花了很长时间。检查我使用google-apis(用于地图),使用库,清理项目等。

删除.project并添加一个新的(创建新的android项目)终于解决了它。

答案 1 :(得分:0)

CustomMainActivity是否为MapActivity提供子类?如果是这样,可能是因为在没有Google API的Android设备上运行您的应用程序(我没有对此进行过测试),或者是否存在/system/framework/com.google.android.maps.jar

在模拟器上测试应该相当容易 - 只需创建一个没有Google API的AVD。

Phil Lello