【Android 疑难杂症1】android.content.ActivityNotFoundException: Unable to find explicit activity class
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.cnotes/com.example.cnotes.Notes_History}; have you declared this activity in your AndroidManifest.xml?
在activity中访问其它xml文件的时候总是提示Unable to find,这种情况是没有在配置文件定义这个activity,解决办法如下:
找到 AndroidManifest.xml文件,在application节点中增加如下代码:
<activity android:name="com.example.cnotes.Notes_Add"></activity> <activity android:name="com.example.cnotes.Notes_History"></activity>
作者:Allen Chen无影
邮箱:allen0717@163.com 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.