Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio - Debugging: Jump to next break point?

I have been searching, how to jump to next break point in Android Studio while debugging your application.

I have been using F8 in eclipse to do the same thing but could not find anything in Android Studio.

Any idea, where it is?

like image 595
Master Avatar asked Jan 11 '15 06:01

Master


People also ask

How do you get to the next breakpoint?

Select run menu and click on debug, now your application start in debug mode. After starting application your program execution suspends when the first breakpoint is hit. Such a breakpoint is marked with a blue stripe. You can press F8 to step to the next statement and f9 to step to the next breakpoint.

How do you get to the next step in debug mode?

Press F5 until you reach the line of code where you selected Run to Cursor. This command is useful when you are editing code and want to quickly set a temporary breakpoint and start the debugger at the same time.

Which function key helps jump to next break point?

Shift + F7 Smart step into.

How do I move forward in debug mode?

Open Debug Configuration -> Debugger -> Enable Reverse Debugging at startup . Than you can press shift+F5 or shift+F6 for step back like F5 or F6 for step forward.


1 Answers

Use ALT + F9 for next break point.

like image 77
Hradesh Kumar Avatar answered Sep 26 '22 03:09

Hradesh Kumar