美文网首页小技巧Android Studio
Android Studio如何自定义类注释模板

Android Studio如何自定义类注释模板

作者: 夜瑾漠 | 来源:发表于2019-05-19 09:45 被阅读14次

    创建类的时候如何自定义类的各项注释?

    创建步骤:

    1、File——>Settings...——>Editor——>File and Code Template

    2、选择 Includes 下的 File Header

    3、在右侧的空白区域添加自己的注释模板

    4、新建一个类测试一下是否成功

    新建类.png

    模板中还可以添加的配置:

    
    ${PACKAGE_NAME} name of the package in which the new file is created
    
    ${USER} current user system login name
    
    ${DATE} current system date
    
    ${TIME} current system time
    
    ${YEAR} current year
    
    ${MONTH} current month
    
    ${MONTH_NAME_SHORT} first 3 letters of the current month name. Example: Jan, Feb, etc.
    
    ${MONTH_NAME_FULL} full name of the current month. Example: January, February, etc.
    
    ${DAY} current day of the month
    
    ${HOUR} current hour
    
    ${MINUTE} current minute
    
    ${PROJECT_NAME} the name of the current project
    
    

    相关文章

      网友评论

        本文标题:Android Studio如何自定义类注释模板

        本文链接:https://www.haomeiwen.com/subject/ezefzqtx.html