Reputation: 3120
I tried various steps to remove breakpoints from Android Studio . One of them listed in question BreakPoint link
I followed this but , still there are some green colored with red circle remaining , what are those as seen in image below and how to remove those effectively.
Upvotes: 71
Views: 58384
Reputation: 18749
Remove all breakpoints in three simple steps:
Shift
(or tap the search icon in the upper right corner).Upvotes: 19
Reputation: 784
Its really easy to remove all the break points.
Upvotes: 4
Reputation: 494
Check this image for what it means:
Following the intellij docs it says:
To remove a breakpoint permanently, do one of the following:
Ctrl+Shift+F8
.Select the desired break point and click -
button
If all breakpoints from certain group need to be deleted:
-
or delete
button Upvotes: 2
Reputation: 3629
Step 1: ctrl+shift+F8
Step 2: ctrl+A
Step 3: Click delete or Alt+delete
Step 4: done
Upvotes: 62
Reputation: 71
Pressing ctrl+shift+F8 will pop up the Breakpoints window and then you can disable/enable all break point by clicking the check box in the Java line Breakpoints Treeview
Upvotes: 5
Reputation: 4908
My SOP:
Favorites
from the left hand edge of the screen; Breakpoints
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.
Upvotes: 11
Reputation: 3376
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 (-).
Upvotes: 32
Reputation: 2707
In debug option there is button disable break point button this will disable all break point
Upvotes: 12
Reputation: 2432
Click on red icon which is below to stop debug. you will see a window there you can remove all breakpoints.
Upvotes: 100