当前位置:网站首页>Kotlin learning apply plugin: 'kotlin Android extensions‘

Kotlin learning apply plugin: 'kotlin Android extensions‘

2022-06-26 03:40:00 Light language accumulation

In the main build.gradle Of plugins add to Control can be used directly id assignment 、 operation

plugins {
    
    id 'kotlin-android-extensions'
}

textView.text="hello world"

class MainActivity : AppCompatActivity() {
    
    override fun onCreate(savedInstanceState: Bundle?) {
    
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        textView.text="hello world"
    }
}
原网站

版权声明
本文为[Light language accumulation]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202180547039354.html