赞
踩
一般出现这个问题主要是没有在项目的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
上面它已经就说,你没有实例化com.example.tomato/com.example.alarmtest.AppStart,tomato是项目名字,AppStart是没有实例化的activity。这就明白了,检查这下,注册
<activity android:name="com.example.tomato.AppStart"/>。
但有时你发觉你已经注册,这时你要仔细检查,看看是不是包名写错了,仔细排查错误。就能解决了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。