Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove Stretchy effect from Android Web View App?

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.

like image 792
Ambiguous Turtle Avatar asked Sep 06 '25 23:09

Ambiguous Turtle


1 Answers

Maybe this snippet can work it out :

webView.setOverScrollMode(View.OVER_SCROLL_NEVER);

or xml :

android:overScrollMode="never"
like image 132
Nisa Efendioglu Avatar answered Sep 10 '25 00:09

Nisa Efendioglu