Hide scrollbar in ScrollView

AndroidAndroid Scrollview

Android Problem Overview


I have an app with a ScrollView, and I don't want the scrollbar to appear on the screen. How can I hide the scrollbar in a ScrollView while making sure scrolling still works?

enter image description here

Android Solutions


Solution 1 - Android

In Java add this code:

myScrollView.setVerticalScrollBarEnabled(false);
myScrollView.setHorizontalScrollBarEnabled(false);

In XML add following attribute to your ScrollView:

android:scrollbars="none"

Like this:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainScroll"
android:scrollbars="none" <!-- line to be added -->
>

Solution 2 - Android

This will hide the Scroll bar stick but scroll bar is not disable

android:scrollbarThumbVertical="@null"

android:scrollbarThumbHorizontal="@null"

This will disable the scroll bar

android:scrollbars="none"

Solution 3 - Android

In XML set android:scrollbars="none"

Solution 4 - Android

Try this, it is also working...

android:scrollbarThumbVertical="@null"

or

android:scrollbarThumbHorizontal="@null"

Solution 5 - Android

In my experience,

android:scrollbarThumbVertical="@null"

can cause NullPointerException in older devices. Use this instead:

android:scrollbarThumbVertical="@android:color/transparent"

Cheers!

Solution 6 - Android

you have to try the following solutions

    android:scrollbars="none"

OR

    android:scrollbarThumbVertical="@null"
    android:scrollbarThumbHorizontal="@null"

OR Change color of scrollBars to hide them

    android:scrollbarThumbVertical="@android:color/transparent"

Solution 7 - Android

In the XML layout, add this property:

android:scrollbarSize="0dp"

Solution 8 - Android

For hiding a vertical scrollbar, do this in the XML:

android:scrollbarThumbVertical="@null"

And for Hiding horizontal scrollbar do this :

android:scrollbarThumbHorizontal="@null"

The above lines of codes will work if you want to hide the scrollbar without disabling it.

And for disabling a scrollbar, write this:

android:scrollbars="none"

Solution 9 - Android

Now the scroll does not work anymore if u set android:scrollbars="none"

I have solved the problem with

  android:scrollbars="vertical" // or horizontal

and setting its size to 0 dp

  android:scrollbarSize="0dp"

Solution 10 - Android

If you are making "custom" HorizontalScrollView then you should set those properties in code like so

this.scrollBarSize = 0 this.isHorizontalScrollBarEnabled = false

That is the only way I got mine to work.

Solution 11 - Android

Kotlin Solution

If you need to do this programmatically, you can set either one or both of:

scrollView.isHorizontalScrollBarEnabled = false
scrollView.isVerticalScrollBarEnabled = false

If you'll be applying both regularly, try adding this extension

fun ScrollView.noScrollbars() {
    isHorizontalScrollBarEnabled = false
    isVerticalScrollBarEnabled = false
}

To easily allow switching, you can add an optional boolean

fun ScrollView.noScrollbars(hide: Boolean = true) {
    isHorizontalScrollBarEnabled = !hide
    isVerticalScrollBarEnabled = !hide
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNikunj PatelView Question on Stackoverflow
Solution 1 - AndroidUmar QureshiView Answer on Stackoverflow
Solution 2 - AndroidKishor N RView Answer on Stackoverflow
Solution 3 - AndroidRamesh AkulaView Answer on Stackoverflow
Solution 4 - AndroidKhanView Answer on Stackoverflow
Solution 5 - Androiduser1506104View Answer on Stackoverflow
Solution 6 - AndroidShubham SharmaView Answer on Stackoverflow
Solution 7 - AndroidManeeshView Answer on Stackoverflow
Solution 8 - Androidsaurabh guptaView Answer on Stackoverflow
Solution 9 - AndroidMatej VukosavView Answer on Stackoverflow
Solution 10 - AndroidsaintjabView Answer on Stackoverflow
Solution 11 - AndroidGiboltView Answer on Stackoverflow