回答編集履歴

1

せっかくなので、背景色を変えてみた。

2020/06/17 14:19

投稿

katsuko
katsuko

スコア3538

test CHANGED
@@ -27,6 +27,8 @@
27
27
  import android.view.LayoutInflater
28
28
 
29
29
  import android.widget.Button
30
+
31
+ import android.graphics.Color
30
32
 
31
33
 
32
34
 
@@ -126,6 +128,8 @@
126
128
 
127
129
  textView.setText(item.label + " " + item.count.toString())
128
130
 
131
+ viewHolder.itemView.setBackgroundColor(if (item.count % 2 == 0) Color.RED else Color.GREEN)
132
+
129
133
  }
130
134
 
131
135
 
@@ -172,6 +176,8 @@
172
176
 
173
177
  (勉強がてら初めてkotlinで書いたので、kotlinの文法は参考にしないように(笑))
174
178
 
179
+ (編集: せっかくなので、背景色を変えてみた)
180
+
175
181
 
176
182
 
177
183
  後は`notifyItemChanged`でググれば他にも情報が出てくると思います。