How to effectively remove all breakpoints in Android Studio

前端 未结 8 1381
无人共我
无人共我 2020-12-29 18:33

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 col

相关标签:
8条回答
  • 2020-12-29 18:43

    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 (-).

    0 讨论(0)
  • 2020-12-29 18:47

    Check this image for what it means:

    Following the intellij docs it says:

    • To remove a breakpoint permanently, do one of the following:

      • On the main menu, choose Run | View Breakpoints or Ctrl+Shift+F8.
      • Select the desired break point and click - button

      • If all breakpoints from certain group need to be deleted:

        • Select the group on the left side of the widow and Press - or delete button
    0 讨论(0)
  • 2020-12-29 18:49

    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

    0 讨论(0)
  • 2020-12-29 18:53

    Open breakpoint window short cut key using Ctrl + shift +f8

    0 讨论(0)
  • 2020-12-29 18:57

    My SOP:

    • select Favorites from the left hand edge of the screen;
    • expandBreakpoints
    • 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.

    0 讨论(0)
  • 2020-12-29 19:07

    Click on red icon which is below to stop debug. you will see a window there you can remove all breakpoints.

    0 讨论(0)
提交回复
热议问题