How do I use the Eclipse debugger in an AsyncTask when developing for Android?

前端 未结 2 829
名媛妹妹
名媛妹妹 2020-12-05 00:55

I\'m running ADT (Android Development Tools) in Eclipse and verified that my debugger is working by putting a breakpoint in MainMenu.oncreate (class Activity).

相关标签:
2条回答
  • 2020-12-05 01:10

    in addition to sargas's answer , because in Run mode you could get an error if you forget to comment that line, you could use the following:

    if(android.os.Debug.isDebuggerConnected())
        android.os.Debug.waitForDebugger();
    

    so it takes care of itself.

    0 讨论(0)
  • 2020-12-05 01:17

    Put the following code fragment in the beginning of doInBackground:

    android.os.Debug.waitForDebugger();

    Then when you set a breakpoint in that thread, eclipse will find it.

    0 讨论(0)
提交回复
热议问题