'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.



Solution 1:[1]

Maybe this snippet can work it out :

webView.setOverScrollMode(View.OVER_SCROLL_NEVER);

or xml :

android:overScrollMode="never"

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1