Android:识别 AsyncTask 正在运行的代码
在 Eclipse 的“调试”窗口中,我看到一个线程显示:
Thread <16> AsyncTask #11
有没有办法确定 AsyncTask 所指的实际代码部分?我是否需要在代码中添加一些内容来识别正在运行的线程?
In Eclipse in the Debug window I see a thread that shows:
Thread <16> AsyncTask #11
Is there a way to determine what actual section of code the AsyncTask is referring to? Is there something I have to add in code to identify that running thread?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
doInBackground
函数的开头命名AsyncTask
线程:指定的名称将显示在 Eclipse 调试窗口中,以及 DDMS 透视图中的线程列表。
You can name the
AsyncTask
thread at the beginning of yourdoInBackground
function:The specified name will be shown in the Eclipse Debug window, as well as thread list in DDMS perspective.