AndroidStudio code debugging method

AndroidStudio debugging method

Official website details: https://developer.android.com/studio/debug?hl=zh-cn

debug mode debugging:

resume program continue to execute
step over jump to the next line
step into enter the custom method (if it is not a method, enter the next line)
force step into enter all methods (if it is not a method, enter the next line)
step out jump out of the method, and the method execution is completed
run to cursor jump to the next marker point of the logic

log debugging

Filter condition:
level:error

Log printing debugging

Log.info
println
System.out.println

おすすめ

転載: blog.csdn.net/weixin_43865875/article/details/129656748
おすすめ