溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Kotlin之自定義 Live Templates詳解(模板代碼)

發(fā)布時(shí)間:2020-09-25 13:13:39 來(lái)源:腳本之家 閱讀:186 作者:wdeo3601 欄目:移動(dòng)開(kāi)發(fā)

想必大家都知道 android studio 的 live templates 功能,那真是各種方便,比如你想使用 newInstance 去生成一個(gè)類的實(shí)例:

Kotlin之自定義 Live Templates詳解(模板代碼)

簡(jiǎn)直不要太方便!

當(dāng)今 kotlin 流行起來(lái)了,你在使用 kotlin 開(kāi)發(fā) android 的時(shí)候,是不是發(fā)現(xiàn)以前用的 logt、loge、newinstance…,這些快捷創(chuàng)建代碼片段的方式都不能用了,沒(méi)關(guān)系,來(lái)一起自定義吧年輕人~

打開(kāi) android studio >> File >> Settings ,搜索 “l(fā)ive templates”:

Kotlin之自定義 Live Templates詳解(模板代碼)

來(lái)看看我們之前在 java 代碼里用的 newinstance 到底是怎么定義的:

Kotlin之自定義 Live Templates詳解(模板代碼)

現(xiàn)在,我們就可以照著葫蘆畫(huà)瓢,來(lái)把 newinstance 搬到 kotlin 里邊了:

首先先明確我們最終要生成的代碼:

companion object {
 fun newInstance(): TestKotlinFragment {

 val args = Bundle()

 val fragment = TestKotlinFragment()
 fragment.arguments = args
 return fragment
 }
}

然后就可以照著 java 版的 newinstance 模板去寫(xiě) kotlin 版的了:

Kotlin之自定義 Live Templates詳解(模板代碼)

gif圖太長(zhǎng)了,再來(lái)個(gè)靜態(tài)的:

Kotlin之自定義 Live Templates詳解(模板代碼)

下面是 template text,需要的直接復(fù)制。。:

companion object {
 fun newInstance($args$): $fragment$ {
 $nullChecks$
 val args = android.os.Bundle()
 $addArgs$
 val fragment = $fragment$()
 fragment.arguments = args
 return fragment
 }
}

最后再來(lái)個(gè) kotlin 中使用的效果:

Kotlin之自定義 Live Templates詳解(模板代碼)

到這里就結(jié)束了,如果你想自定義其他的,照著這個(gè)方法就可以,本文就不演示其他的了。

以上這篇Kotlin之自定義 Live Templates詳解(模板代碼)就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI