天天看点

android studio中好用的工具

android studio中提供了一些比较好用的工具,今天讲的是输入快捷键的功能。

如果你在.java文件中输入psfs,则会出现如下提示

android studio中好用的工具

此时你再点击回车的时候,代码中则自动生成public static final String,然后根据需求来声明该变量,例如

android studio中好用的工具

这种称之为code template。打开设置中去查看android studio中默认提供的template,也可以添加自己想要的template。

android studio中好用的工具

例如上面这个例子,当前选中的是const,下满黄色框框中描述了输入该template后会出现的模板。

除了java文件的,还有许多xml等文件的template,读者可以自行查看。

当然也可以直接添加自定义template。

android studio中好用的工具

然后点击apply 和 ok,在java文件中声明的地方输入pss,出现如下效果

android studio中好用的工具

还有一种模板是file template

android studio中好用的工具

这里的template在你new java class的时候会看到,所以读者也可以根据自己的代码的需求来创建相应的file template,方便自己code。

android studio中好用的工具

选择singleton,然后点击ok,这就是根据模板生成的代码

android studio中好用的工具