How to effectively remove all breakpoints in Android Studio
Solution 1:
Click on red icon which is below to stop debug. you will see a window there you can remove all breakpoints.
Solution 2:
Step 1: ctrl+shift+F8
Step 2: ctrl+A
Step 3: Click delete or Alt+delete
Step 4: done
Solution 3:
First, click on debug tab and you see a screen like this:-
Now you will see a window like this:-
From this screen you can remove breakpoints by clicking (-) button. To remove all break point first select Java Line break Point option and then click (-).
Solution 4:
In debug option there is button disable break point button this will disable all break point
Solution 5:
My SOP:
- select
Favorites
from the left hand edge of the screen; - expand
Breakpoints
- select those you wish to remove
- press
delete
or the-
button (located at the bottom of the window)
Alternative:
⌘ ⇧ F8 (Mac) or Ctrl ⇧ F8 (Windows) brings up the breakpoint dialog. Highlight the breakpoints you want to remove and press the -
button.