Comment shortcut Android Studio

后端 未结 24 2868
野趣味
野趣味 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:06

    Mac With Numeric pad

    Line Comment hold both: Cmd + /

    Block Comment hold all three: Cmd + Alt + /

    Mac

    Line Comment hold both: Cmd + + =

    Block Comment hold all three: Cmd + Alt + + =


    Windows/linux :

    Line Comment hold both: Ctrl + /

    Block Comment hold all three: Ctrl + Shift + /

    Same way to remove the comment block.


    To Provide Method Documentation comment type /** and press Enter just above the method name (

    It will create a block comment with parameter list and return type like this

    /**
     * @param userId 
     * @return
     */
    public int getSubPlayerCountForUser(String userId){}
    

提交回复
热议问题