模拟器显示“不幸的是myapp已停止工作”
earline在控制台中获得此行
Starting activity com.example.hotornot.SQLiteExample on device emulator-5554
但是现在获得这条线....任何人都可以告诉我错误
ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.hotornot/.SQLiteExample }
答案 0 :(得分:1)
请按照以下步骤操作
您需要在android:debuggable="true"
中的应用中设置AndroidManifest.xml
。如果您尚未设置该设置,则不会启用调试。
通过右键单击项目启动应用程序并选择Debug As-> Android Application或正常运行,稍后在DDMS
透视图中选择设备窗格中正在运行的应用程序并单击在绿色的虫子上。
然后请在这里发布日志猫。
步骤来源: How to Debug Android application line by line using Eclipse?