Reputation: 19463
How to remove the grey bar when the content is shorter than the height of display?
Upvotes: 1
Views: 80
Reputation: 3793
Belonging to this answer: Android hide listview scrollbar i would recommend you to set android:scrollbars="none"
into your layout.xml
. A Guide with detailed information about that can be found here: Android - Hide Scrollbar
If that doesn't help, try to add this into your stylesheet.css
:
::-webkit-scrollbar {
display: none;
}
Upvotes: 1