标签:
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>
【Android 疑难杂症1】android.content.ActivityNotFoundException: Unable to find explicit activity class
标签:
原文地址:http://www.cnblogs.com/allen0118/p/5046542.html