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

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

创建步骤:

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

2、选择 Includes 下的 File Header

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

Android Studio如何自定义类注释模板_第1张图片

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

Android Studio如何自定义类注释模板_第2张图片
新建类.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如何自定义类注释模板)