Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My requirements are to display a vertical list of views with a scrollbar whenever the total height of the views is bigger than the allowed height for the list.

Additionally, I need to customize the scrollBar appearance (background and thumb) programmatically. (At runtime, my activity will receive all the data to do the rendering : the bitmap to use as scrollbar background, the scrollbar width and the bitmap to use as scrollbar's thumb.)

A ListView seems a good candidate for this, except that I can't find a way to customize the scrollBar programmatically. I read this question scrollBar in a listView...customizing it. but, it's using a theme, and AFAIK it's not possible the create a new theme programmatically.

So my question(s):

  1. Is there a way to customize the appearance of a scrollbar (within a ListView) programmatically ?

  2. [only if the answer to the first one is "definitively not possible"] do you see any other way to achieve those requirements (and some working example of doing it)

Thanks.

EDIT (23/12)

I found this hidden class android.widget.ScrollBarDrawable. May be a good starting point to build a solution (no time to investigate it right now).

share|improve this question

3 Answers

up vote 4 down vote accepted
+50

is there a way to customize the appearance of a scrollbar (within a ListView) programmatically ?

Literally, it does not look like it, simply because there are no setters for manipulating it.

It is conceivable that you could create your own BenView subclass of View that replaces the hidden ScrollBarDrawable with BenScrollBarDrawable that handles dynamic changes. But then you would need to create BenViewGroup, BenAbsListView, and BenListView, cloning their Ben-less counterparts' source code, to have them chain up to BenView to inherit this behavior. And, since one of ViewGroup, AbsListView, or ListView is bound to change in any Android release, you will actually need N copies of these classes and choose the right copy based on API level at runtime. And then your app may still behave oddly on some devices where the manufacturer went in and tinkered with ViewGroup, AbsListView, or ListView, and you will not be using their code.

I doubt that this is worth it, particularly since scrollbars are not visible by default except while scrolling.

do you see any other way to achieve those requirements (and some working example of doing it)

Handle your own touch events to do your own scrolling and do your own scrollbar stuff. Whether this is less work than the above solution is up for debate.

share|improve this answer
Very good remark about manufacturer modifying the framework code. See this stackoverflow.com/questions/6084538/… for more information about modified ListView.java on Samsung devices. – ben75 Jan 7 at 12:56

Just change the android:scrollbarThumbVertical="@drawable/scrollbar_vertical_thumb" and create a drawable as per your need.

Like

<ListView android:scrollbarThumbVertical="@drawable/scrollbar_vertical_thumb" /> 

in the Drawable:

<shape xmlns:android="http://schemas.android.com/apk/res/android" > 
    <gradient android:angle="0" android:endColor="#6699FF" android:startColor="#3333FF" />
    <corners android:radius="1dp" /> 
    <size android:width="1dp" /> 
</shape>

I think this is what you want!

share|improve this answer
Sorry, but I think you didn't understand the question: I need to do it programmatically not with static xml. – ben75 Dec 23 '12 at 10:49

You can use the jquery plugin(jquery.nicescroll.js) to achieve this. More details visit http://areaaperta.com/nicescroll/

share|improve this answer
sorry, not looking for a browser solution – ben75 Dec 28 '12 at 10:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.