android编程中遇到的Unable to find explicit activity class错误的原因及解决办法
Android.content.ActivityNotFoundException:Unable to find explicit activity class {com.example.message/com.example.message};have you declared this activity in your AndroidManifest.xml?出现这种错误的原因
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>
更多推荐
所有评论(0)