Home

Friday, November 11, 2011

How to create double thumb scroll bar

Having double thumbs in a scroll will be useful for filtering values in the list.

 

Here is a code snip


public interface OnThumbPositionUpdateListener {
    void onFirstThumbUpdate(int xPos, int yPos);
    void onSecondThumbUpdate(int xPos, int yPos);
}