Is there a way to monitor threads in AndroidStudio?

前端 未结 5 575
栀梦
栀梦 2021-01-11 20:24

I have an Android Java app that I am creating in AndroidStudio and running it on a Samsung Tablet (not using a virtual device at all). I have three threads and I believe th

5条回答
  •  北海茫月
    2021-01-11 20:50

    There is a Debug tab at the bottom of the screen. You can use the debugger to monitor various resources and variables of your app. If you can't find the debugger at the bottom of the screen, Select View > Tool Windows > Debug or press Alt+5. The threads tab will be in the debugger.

    If you still cannot find the Threads tab in the debugger, you'll find an icon that looks like a couple of boxes with a drop-menu by the top-right corner of the debugger. Inside this drop-down list, make sure Threads option is checked.

    Here is a link explaining Debugging

提交回复
热议问题