0

I've an Android app in Titanium. In this app, I'm using a webview to display graphs. Once the webview has been loaded it displays for couple of seconds the webview scrollbars and then they automatically disappear. Is there a way to hide them for the all the time?

I'm using Titanium 3.2.2 SDK.

Thank you!

A.Vila
  • 1,456
  • 4
  • 21
  • 32

2 Answers2

1

yes check this answer .

webView.setScrollbarFadingEnabled(true);

or all the time :

webView.setVerticalScrollBarEnabled(false);
webView.setHorizontalScrollBarEnabled(false);
Community
  • 1
  • 1
ahmed_khan_89
  • 2,755
  • 26
  • 49
  • I think native Android has this method, but I can't find it in Titanium. Is it possible to do it in Titanium? Thanks – A.Vila Apr 15 '14 at 16:10
  • I am sorry, I didn't read well your question. I don't have any idea... I hope you can find your solution. good luck :) – ahmed_khan_89 Apr 15 '14 at 16:13
-1

Try this.

webView.showScrollbars = false;

or

webView.disableBounce = true;
Suraj kochale
  • 973
  • 5
  • 14