安卓开发报错:“unfortunately,sy6 has stopped”

从logcat的error中看到:
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.jy.myapplication/com.example.jy.myapplication.ShowActivity}; have you declared this activity in your AndroidManifest.xml?

这个错误的意思是“你是否在AndroidManifest.xml中声明了这个activity。"

原因是:你在新建activity的时候没有新建entityactivity,导致新建activity时没有自动在AndroidManifest.xml中声明这个新的activity。

解决方法是在AndroidManifest.xml中声明这个未声明的activity,如下图:在这里插入图片描述

你可能感兴趣的:(安卓,android)