Tima
Tima

Reputation: 12925

Always show scrollbar for ListView

There are ListViews in some activities of my app.

Since Android 2.1 or 2.2 scrollbars will be only displayed if the user scroll the list or for very short time at the beginning. Then scrollbars will disappear.

Is it possible somehow to show them always as for example in Android 1.5?

Upvotes: 34

Views: 29039

Answers (2)

Manivannan
Manivannan

Reputation: 1640

In your xml set android:fadeScrollbars="false"

Upvotes: 111

nicholas.hauschild
nicholas.hauschild

Reputation: 42834

You can accomplish this with the method setScrollbarFadingEnabled() on the View object.

Upvotes: 5

Related Questions