工欲善其事必先利其器,Android studio是我们手机的工具,对工具的了解程度越深,就能越方便我们的开发,提高开发效率。每次新到一个公司,或者换一台电脑,重装一次系统,都要重新来配置Android studio的这些配置,有时候真的想不起来还差什么,所以就干脆记录下来,往后直接对照着配置。
1.设置编辑界面和代码主题
我们可以根据我们喜好选择我们想要的颜色,白色和黑色。
选择"Preferences->Appearance->Theme",默认可以选择Light和Darcula,分别为白色和黑色主题,选择之后点击Apply应用。
怎么没有你喜欢的颜色?那就选择更多的主题。去Color Themes官网下载各种主题的jar包。
选择一款自己喜欢的,点击绿色框下载,下载的为.jar文件
怎么使用呢?"File->import Settings"导入该jar文件,选择ok就ok啦,然后重启AS。
然后代码里就是逼格慢慢的代码主题啦。
-
修改背景图片
想要修改编码背景图片,在"Preferences->Appearance->Background Image"中选择要设置的图片,点击ok,如下图所示,让你敲代码的时候轻松愉快。
2.修改字体大小和字体样式
这个就是老生常谈了,在"Preferences->Editor->Color Scheme->Color Scheme Font"下,先选择一个Scheme主题,设置size然后Apply就好了。在Font下可以选择各种字体。
3.设置文件注释模板
在"Preferences->Editor->File and Code Templates"下,切换到Includes下,在File Header里面设置注释模板。
新创建的文件:
/**
* create by apple
* create on 18/11/17
* description
*/
public class CodeTemplate {
}
可选的变量名有:
redefined variables will take the following values:
${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
${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
4.设置自动导包
在没有设置自动导包的时候,导入的包不会自动更新,设置之后废弃的,未使用的导包会自动清除掉。在"Preferences->Editor->Auto Import"中,勾选上如下2条,就配置好自动导包了。