Android Studio - Debugging: Jump to next break point?

49,557

Solution 1

Use ALT + F9 for next break point.

Solution 2

In android studio, in debug mode, choose the menu "run", click "Resume Program", it would go to the next breakpoint.

Solution 3

Use F9 to move to next breakpoint in Studio, the equivalent of F8 in Eclipse

Solution 4

You can also use the eclipse shortcuts to debug in android studio,

just you need to change the keymap settings,

File > settings > keyMap > Choose eclipse and apply .!

Solution 5

You can easily see all keys when you do mouseover as seen below-

enter image description here

Share:
49,557

Related videos on Youtube

Master
Author by

Master

I am a Software Programmer/Technology Leader with prowess in Algorithms and Data Structure, and working with technologies - Java, Android, Apex, Salesforce, Python, C#, CouchDB, CouchbaseLite, SQLite, XML, JSON.

Updated on April 21, 2020

Comments

  • Master
    Master about 4 years

    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?

    • amuttsch
      amuttsch over 9 years
      You can change the keymap to eclipse style in settings -> keymap. This way you have all your keys like in eclipse and can use F8 for continue. Otherwise check the keymap for the key.
    • wangf
      wangf over 8 years
      F9 is the default Resume Program
  • William Hu
    William Hu almost 8 years
    for mac OS, you need fn+option+F9
  • Gyan Swaroop Awasthi
    Gyan Swaroop Awasthi about 4 years
    this is step by step , i want jump from on breakpoint to next breakpoint.
  • Farhan Shirgill Ansari
    Farhan Shirgill Ansari about 4 years
    Check the adjacent buttons to the highlighted one. Its there. Check the arrow one.
  • Kriti
    Kriti almost 4 years
    This one really helped me for Android Studio 4.0
  • ftdeveloper
    ftdeveloper over 3 years
    Thanks you very much. It helpmed me also.