Home > Blockchain >  How to remove Stretchy effect from Android Web View App?
How to remove Stretchy effect from Android Web View App?

Time:04-19

enter image description here

I m trying to make a web view app using android studio. Although I made a lot like these earlier, never faced this kind of stretching issue till the recent update.

Can anyone tell me if there is any Android Java fix or Jquery fix for this stretchy problem?

Any help is appreciated.

CodePudding user response:

Maybe this snippet can work it out :

webView.setOverScrollMode(View.OVER_SCROLL_NEVER);

or xml :

android:overScrollMode="never"
  • Related