I have a ListView with several elements, so I need to use a fast scrollbar from the Android Honeycomb API. I want the fast scrollbar to be on the left side of the list, for that I'm doing getListView().setVerticalScrollbarPosition(ListView.SCROLLBAR_POSITION_LEFT);
The problem is that the fast scrollbar is actually inside the list, on the left side of it, but I want the scrollbar to be outside the list, on the left of it. How can I achieve that?