asmhan
asmhan

Reputation: 27

How to change the color of scrollbar in textview

I am using scrollbar in textview. I want to change the color of scrollbar when it is on focus.

Upvotes: 2

Views: 647

Answers (2)

Raimo
Raimo

Reputation: 1534

You could use a ColorStateList for this if I'm not mistaking in combination with the android:scrollbarThumbVertical attribute: https://developer.android.com/reference/android/view/View.html#attr_android:scrollbarThumbVertical

Upvotes: 1

Qaiser Hussain
Qaiser Hussain

Reputation: 419

<item name="android:scrollbarSize">4dp</item>
<item name="android:scrollbarThumbVertical">@color/scrollbar_thumb</item>

Upvotes: 3

Related Questions