当前位置: 首页>编程语言>正文

【kotlin】使用插件实现在Android中的高效编程-省略使用findedById方法和xml交互

【kotlin】使用插件实现在Android中的高效编程-省略使用findedById方法和xml交互,【kotlin】使用插件实现在Android中的高效编程-省略使用findedById方法和xml交互_kotlin,第1张

在gradle的构建项目中加入插件的ID

id 'kotlin-android-extensions'

这样在代码中就不需要findById的方法,提高效率

class FirstActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_first)
        button_1.setOnClickListener {
            Toast.makeText(this,"HelloFirsTKotlinButton",LENGTH_LONG).show()
        }
    }
}

https://www.xamrdz.com/lan/5c81920580.html

相关文章: