Я нашел список!В Android Studio я зашел в Файл |Новый |Редактирование шаблонов файлов При этом открывалось диалоговое окно «Шаблоны файлов и кода», а вкладкой по умолчанию была «Файл».Тип файла по умолчанию - HTML.В окне описания он имеет хороший длинный текст, который показывает их.HTML-код для этого был в default.html внутри java_resources_en.jar, расположенного в C: \ Program Files \ Android \ Android Studio \ lib \ java_resources_en.jar
Along with static text, code and comments, you can also use predefined variables (listed below) that will then be expanded like macros into the corresponding values.
It is also possible to specify an arbitrary number of custom variables in the format ${<VARIABLE_NAME>}. In this case, before the new file is created, you will be prompted with a dialog where you can define particular values for all custom variables.
Using the #parse directive, you can include templates from the Includes tab, by specifying the full name of the desired template as a parameter in quotation marks. For example:
#parse("File Header.java")
Predefined variables will take the following values:
${PACKAGE_NAME} name of the package in which the new file is created
${NAME} name of the new file specified by you in the New <TEMPLATE_NAME> dialog
${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
${DAY_NAME_SHORT} first 3 letters of the current day name. Example: Mon, Tue, etc.
${DAY_NAME_FULL} full name of the current day. Example: Monday, Tuesday, etc.
${HOUR} current hour
${MINUTE} current minute
${PROJECT_NAME} the name of the current project