Kotlin之自定義 Live Templates詳解(模板程式碼)
阿新 • • 發佈:2020-03-17
想必大家都知道 android studio 的 live templates 功能,那真是各種方便,比如你想使用 newInstance 去生成一個類的例項:
簡直不要太方便!
當今 kotlin 流行起來了,你在使用 kotlin 開發 android 的時候,是不是發現以前用的 logt、loge、newinstance…,這些快捷建立程式碼片段的方式都不能用了,沒關係,來一起自定義吧年輕人~
開啟 android studio >> File >> Settings,搜尋 “live templates”:
來看看我們之前在 java 程式碼裡用的 newinstance 到底是怎麼定義的:
現在,我們就可以照著葫蘆畫瓢,來把 newinstance 搬到 kotlin 裡邊了:
首先先明確我們最終要生成的程式碼:
companion object { fun newInstance(): TestKotlinFragment { val args = Bundle() val fragment = TestKotlinFragment() fragment.arguments = args return fragment } }
然後就可以照著 java 版的 newinstance 模板去寫 kotlin 版的了:
gif圖太長了,再來個靜態的:
下面是 template text,需要的直接複製。。:
companion object { fun newInstance($args$): $fragment$ { $nullChecks$ val args = android.os.Bundle() $addArgs$ val fragment = $fragment$() fragment.arguments = args return fragment } }
最後再來個 kotlin 中使用的效果:
到這裡就結束了,如果你想自定義其他的,照著這個方法就可以,本文就不演示其他的了。
以上這篇Kotlin之自定義 Live Templates詳解(模板程式碼)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。