Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a transparent scrollbar in android?

Tags:

android

I have a transparent listview with a image as background. Now, i want the scrollbar as transparent too, i.e I must be able to see the background image through this scrollbar too. Pls help!!!

like image 207
user403241 Avatar asked Jul 27 '10 10:07

user403241


2 Answers

Try this:

android:scrollbarThumbHorizontal="..."
android:scrollbarThumbVertical="..."

Where ... is a reference to your transparent drawable.

like image 184
plugmind Avatar answered Sep 22 '22 10:09

plugmind


In your XML, if you add the line

android:scrollbars="none"

your ListView will still scroll, but have no visible scrollbars.

like image 38
ZachM Avatar answered Sep 25 '22 10:09

ZachM