3

i am using ListView and I am trying change scroll color but no result, I don't know how to do it, is there a way to do it?

user989340
  • 123
  • 1
  • 2
  • 9

2 Answers2

3

Try this

android:scrollbarThumbVertical="@android:color/white"

Maverick
  • 961
  • 9
  • 13
  • 2
    it does work, but makes my scrollbar very dick and to display as soon as the view is loaded, very odd. I fix it with this, android:scrollbarThumbVertical="@color/colorWhite" android:scrollbarSize="2dp" android:scrollbarDefaultDelayBeforeFade="0" – cutiko May 12 '16 at 15:02
2

If you mean background color of listview when drawing then see this android blog post..

If you mean scrollbar color then see this SO thread...

Community
  • 1
  • 1
Krishnabhadra
  • 34,169
  • 30
  • 118
  • 167