gpt4 book ai didi

java - 如何在Kotlin的RecyclerView中更改每个偶数值元素的颜色?

转载 作者:行者123 更新时间:2023-12-02 13:32:51 26 4
gpt4 key购买 nike

在 Kotlin ,我比较新鲜,请让我知道

//In onBindViewHolder method :
val context = holder.itemView.context
//Here I want to change background colour so please tell me or comment
if (position % 2 == 0) {
holder.binding.root.setBackgroundColor(ContextCompat.getColor(context,R.color.colorAccent))
} else {
holder.binding.root.setBackgroundColor(ContextCompat.getColor(context,R.color.colorPrimary))
}


提前致谢。!

最佳答案

请使用这个:

 if (position % 2 == 1) {
holder.binding.root.setBackgroundColor(ContextCompat.getColor(context,R.color.colorAccent))
} else {
holder.binding.root.setBackgroundColor(ContextCompat.getColor(context,R.color.colorPrimary))
}

它将被执行。

关于java - 如何在Kotlin的RecyclerView中更改每个偶数值元素的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60319000/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com