Ostkontentitan
Ostkontentitan

Reputation: 7020

Hide Scrollbar of HorizontalScrollView

How can I get rid of the scrollbars on a HorizontalScrollView?

Upvotes: 86

Views: 57270

Answers (1)

Benito Bertoli
Benito Bertoli

Reputation: 25803

Add the following to your xml:

android:scrollbars="none"

Or hide the scrollbars programmatically:

view.setVerticalScrollBarEnabled(false); 
view.setHorizontalScrollBarEnabled(false);

Upvotes: 276

Related Questions