tags:

views:

97

answers:

2

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!!!

A: 

In your XML, if you add the line

android:scrollbars="none"

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

ZachM
Thank u for the reply!In the case you said, the scrollbar will not be visible at all, but my requirement is like.. the scrollbar of my Listview must be transparent and the text or background under it should be visible.
Can anyone help please? This is urgent!
+1  A: 

Try this:

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

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

radek-k
BTW if the answer was helpful, please accept the reply (green checkmark), thanks
radek-k