Change Author template in Android Studio

前端 未结 7 1102
盖世英雄少女心
盖世英雄少女心 2020-12-22 17:43

I want to change the automatic author that appears when I create a file in AndroidStudio.

/**
 * Created by a556520 on 16/01/14.
 */
public class POI {
         


        
7条回答
  •  Happy的楠姐
    2020-12-22 18:17

    The above answers are correct. But you can go even further and define your own variables - such as User, Company, Email etc.:

    #set ($USER = "Name name")
    #set ($COMPANY = "company Ltd")
    #set ($EMAIL = "example@gmail.com")
    
    /**
     * Created by ${USER} on ${DATE}.
     * ${COMPANY}
     * ${EMAIL}
     */
    

提交回复
热议问题