Comment shortcut Android Studio

后端 未结 24 2815
野趣味
野趣味 2020-12-22 19:55

I\'m searching for useful Android Studio keyboard shortcut for commenting code, as in Sublime Text or Eclipse.

When I press either cmd+/ or

24条回答
  •  离开以前
    2020-12-22 20:18

    Comment method like pro developers:

    Windows/linux:

    Line Comment : Ctrl + /

    Block Comment : Ctrl + Shift

    Method Commenting:

    Type `/**` and press `Enter Key`
    

    it will add the comment snippet like we see in standard documentation, give it a try this once.

    /**
     * 
     * @param addOpacity
     */
    public void setOpacityOnUserImage(boolean addOpacity) {
    // Your business logic. 
    }
    

提交回复
热议问题