LoginSignup
1
2

More than 5 years have passed since last update.

Android Sutdioでファイルを作った時の「* Created by USER_NAME on yyyy/mm/dd」を任意に変える

Posted at

Android StudioでJavaファイルを作ると下記のような文言が自動的に入るが、変えたいとき用のメモ。

/**
 * Created by ${USER} on ${DATE}.
 */

設定場所

Preference>Editor>File and Code Templates>Includesタブ>File Header
(Android Studio ver.2.2.3の場合)

スクリーンショット 2017-01-17 11.02.36.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
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2