6、Error: Activity class {} does not exist.Error while Launching activity

Error: Activity class {...Activity} does not exist
Error while Launching activity

具体效果图:
6、Error: Activity class {} does not exist.Error while Launching activity_第1张图片

出现情况:连接数据线进行运行项目成功之后,把项目卸载掉,然后想重新安装的时候就出现了这个错误问题

分析原因:项目中主Activity页面运行报的错误,因为android studio认为你的项目还是运行在手机上的,可是你把他卸载掉了,它自然不知道,所以才会出现这种情况。可以看到上图下边栏这里写图片描述,as可能认为你的项目主Activity还在进程中,所以安装不了。

解决方法:

第一种:处理方式也很简单,直接断掉USB连接,然后重新连接上进行安装

第二种:使用命令adb uninstall com.xx.xxx.xxx(包名)卸载apk,再重新安装就ok了

第三种: (借鉴:http://stackoverflow.com/questions/20915266/error-type-3-error-activity-class-does-not-exist)

 1. Cleaned the Project (我是直接这一步就ok了) 
 2. Deleted the Build directory
 3. Restarted Android Studio
 4. Rebuild the Project 
 5. Run

只能帮到这了,如果还是不行的话,可以网上查找其他可行方案。

你可能感兴趣的:(AS常见报错)