概述
Android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.message/com.example.message}; have you declared this activity in your AndroidManifest.xml?
出现这种错误的原因有两个:
1:一个是在配置文件AndroidManifest.xml里面没有写新的activity的配置信息(如下):
<activity
android:name="Ccom.example.message.Message"
android:label="@string/title_activity_message_web"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
2:另一个是因为配置文件信息书写错误,好好检查一下,像我上面的配置信息中就多谢了一个C,所以提示错误,我很奇怪为什么编译器不提示,那是因为错误在“ ”里面,编译器发现不了,所以检查的时候要特别注意“ ”里面的信息是否有错误!
正确的配置信息如下:
<activity
android:name="com.example.message.Message"
android:label="@string/title_activity_message_web"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
最后
以上就是震动大米为你收集整理的android编程中遇到的Unable to find explicit activity class错误的原因及解决办法的全部内容,希望文章能够帮你解决android编程中遇到的Unable to find explicit activity class错误的原因及解决办法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复