java.lang.RuntimeException

05-21 10:03:03.916: E/AndroidRuntime(18573): FATAL EXCEPTION: main
05-21 10:03:03.916: E/AndroidRuntime(18573): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.tomato/com.example.alarmtest.AppStart}: java.lang.ClassNotFoundException: com.example.alarmtest.AppStart
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2110)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2229)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.app.ActivityThread.access$600(ActivityThread.java:139)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1261)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.os.Handler.dispatchMessage(Handler.java:99)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.os.Looper.loop(Looper.java:154)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.app.ActivityThread.main(ActivityThread.java:4944)
05-21 10:03:03.916: E/AndroidRuntime(18573): at java.lang.reflect.Method.invokeNative(Native Method)
05-21 10:03:03.916: E/AndroidRuntime(18573): at java.lang.reflect.Method.invoke(Method.java:511)
05-21 10:03:03.916: E/AndroidRuntime(18573): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
05-21 10:03:03.916: E/AndroidRuntime(18573): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
05-21 10:03:03.916: E/AndroidRuntime(18573): at dalvik.system.NativeStart.main(Native Method)
05-21 10:03:03.916: E/AndroidRuntime(18573): Caused by: java.lang.ClassNotFoundException: com.example.alarmtest.AppStart
05-21 10:03:03.916: E/AndroidRuntime(18573): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:61)
05-21 10:03:03.916: E/AndroidRuntime(18573): at java.lang.ClassLoader.loadClass(ClassLoader.java:501)
05-21 10:03:03.916: E/AndroidRuntime(18573): at java.lang.ClassLoader.loadClass(ClassLoader.java:461)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.app.Instrumentation.newActivity(Instrumentation.java:1039)
05-21 10:03:03.916: E/AndroidRuntime(18573): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2101)

操作方法

  • 01

    一般出现这个问题主要是没有在项目的androidManifest.xml里注册使用activity,主要就是这句: java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.tomato/com.example.alarmtest.AppStart}: java.lang.ClassNotFoundException: com.example.alarmtest.AppStart

  • 02

    上面它已经就说,你没有实例化com.example.tomato/com.example.alarmtest.AppStart,tomato是项目名字,AppStart是没有实例化的activity。这就明白了,检查这下,注册 <activity android:name="com.example.tomato.AppStart"/>。

  • 03

    但有时你发觉你已经注册,这时你要仔细检查,看看是不是包名写错了,仔细排查错误。就能解决了。

(0)

相关推荐

  • 我的世界 java.lang.NullPointerException

    我的世界局域网联机出现Internal exception: java.lang.NullPointerException的解决方法 操作方法 01 出错的原因是由于我的世界1.8以后增加了防盗版的策 ...

  • The type java.lang.Object cannot be resolved

    有时候在Eclipse中打开或者导入项目时会出现标题字样的问题:The type java.lang.Object cannot be resolved. It is indirectly refer ...

  • 如何解决java.lang.OutOfMemoryError

    在intellj idea中,当项目中的模块很多时,在启动项目的时候,会报java.lang.OutOfMemoryError:PermGen space错误. 操作方法 01 PermGen spa ...

  • java.lang.NullPointerException解决办法

    java.lang.NullPointerException在java中是指空指针异常,是在程序的某一处未取得合法的内存指针数据导致的错误. 操作方法 01 仔细看一下提示错误的那一行空指针错误会发生 ...

  • java.lang.IllegalStateException

    关键词:技术移动开发怎么实现 attempt to re-open an already-closed object 字面理解,试图再次打开已经关闭的对象,这是我在操作sqlited的时候出现的错误, ...

  • Java常见异常总结

    算术异常类:ArithmeticExecption 空指针异常类:NullPointerException 类型强制转换异常:ClassCastException 数组负下标异常:NegativeAr ...

  • Java 中经常出现的异常类

    操作方法 01 1. java.lang.nullpointerexception 这个异常大家肯定都经常遇到,异常的解释是"程序遇上了空指针",简单地说就是调用了未经初始化的对象 ...

  • 如何解决centos下root运行Elasticsearch异常

    如何解决centos下root运行Elasticsearch异常 在CentOS 6.5 上运行Elasticsearch 2.3,异常如下: ? 1 2 3 4 5 6 Exception in t ...

  • Access denied connecting to TFS server

    jenkins fts插件无法更新代码 FATAL: com.microsoft.tfs.core.exceptions.TFSUnauthorizedException: Access denied ...