Disable scrollbar

Hi all !
can these be disabled?

Perhaps this will help?

Hi,
still cannot,
is it correct?

image

Working for me

I believe a vertical scrolling arrangement inside another vertical scrolling arrangement will not scroll...

1 Like

not working for me.

anyway, you can try this one:
image

cn.kevinkun.scrollarrangementplus.scrollarrangmentplus.aix (4.0 KB)

	@SimpleFunction(description = "")
	public void HideScrollBar(HVArrangement scrollArrangment) {
		View view = scrollArrangment.getView();
		if (view instanceof ScrollView) {
			ScrollView scrollView = (ScrollView) view;
			scrollView.setVerticalScrollBarEnabled(false);
		} else if (view instanceof HorizontalScrollView) {
			HorizontalScrollView horizontalScrollView = (HorizontalScrollView) view;
			horizontalScrollView.setHorizontalScrollBarEnabled(false);
		}
	}
3 Likes

Not working for me too
I've changed color, size, delay, alwaysshow
only alwaysshow function.

Anyway thank you!

This extension works fine!
Thank you very much!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.