Home > Blockchain >  Set background color according to text recycler view Kotlin
Set background color according to text recycler view Kotlin

Time:02-14

I've a simple recycler-view which has a list of names. Now what I want to achieve is like if the name starts with A the color should be red and if it starts with B it should be blue and so on. How can I do it?

CodePudding user response:

In your adapter you can change your ViewHolder background to which color you want.

  • Related