可以在Kotlin文件中使用以下代码来改变按钮的样式。需要注意的是,这些代码应该在按钮的初始化之后被调用。
val button = findViewById(R.id.my_button) as Button
button.setBackgroundColor(resources.getColor(R.color.colorPrimary))
button.setTextColor(resources.getColor(R.color.white))
其中,R.color.colorPrimary
和R.color.white
是要改变的颜色值的资源ID。如果需要改变其他的按钮属性,可以参考Android官方文档或者查看按钮的API文档。
上一篇:AndroidStudioKotlin使用actual/expect时的重声明错误
下一篇:AndroidStudiokotlin中出现com.example.myapplication.MainActivitycannotbecast错误