1.设置断点
在希望中断的位置左边label一下,设置一个断点。例如下方图片所示在ActivityResultRegistry类中的第147行设置了一个断点,以及在365行dispatchResult()方法处设置了一个断点。
设置好断点后,可以在菜单栏依次点击Run->View Breakpoints查看所设置的全部的断点,并进行删减和修改。
2.Debug程序
点击工具栏中的Debug图标,进入debug模式。
在下方工具栏进入debug中,然后可以看到在所设置的断点中中断了。进而可以通过step over /step in /force step in /step out /drop frame /run to cursor调试程序了。
标签:调试程序,step,Studio,设置,Android,断点 From: https://www.cnblogs.com/larissa-0464/p/17384432.html