我在AsyncTask类的doInBackground()
代码中放了一些断点.但是当我调试应用程序时,控制不会超过doInBackground().请帮我
解决这个问题.
将以下
代码片段放在doInBackground的开头:
android.os.Debug.waitForDebugger();
那么当你在该线程中设置断点时,eclipse会找到它.
在你的模拟器中,
>转到开发者设置.
>点击选择调试应用程序
>选择要调试的应用程序
>将启用“等待调试器”复选框.选中此复选框
现在再试一次运行该应用程序.
原文链接:https://www.f2er.com/android/312595.html