jxl kotlin 不能自定义背景色
时间: 2023-10-10 13:08:28 浏览: 104
如果您是在 Android 应用程序中使用 Kotlin 编写 UI,可以通过设置 View 的背景色来自定义背景色。例如,如果您想将一个 LinearLayout 的背景色设置为红色,可以在 Kotlin 代码中使用以下代码:
```
val linearLayout = findViewById<LinearLayout>(R.id.linearLayout)
linearLayout.setBackgroundColor(ContextCompat.getColor(this, R.color.red))
```
其中,`R.id.linearLayout` 是您的 LinearLayout 的 ID,`R.color.red` 是您在 colors.xml 文件中定义的红色颜色资源的 ID。
请注意,如果您想在 XML 布局文件中设置背景色,则可以使用 `android:background` 属性。
阅读全文