天天看點

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中好用的工具