How to make the `scrollbar` appear on the left side?

android, android-listview, android-scrollbar, android-scrollview

Solution

example:

mView.setVerticalScrollbarPosition(View.SCROLLBAR_POSITION_LEFT);

Problem

In an Android `ListView`, how can I make the `scrollbar` appear on the left side?

Original source