Skip to content Skip to sidebar Skip to footer

Can't Zoom The Webview Under Swipe To Refresh

I've webview under swipetorefresh layout. I cannot zoom smoothly in the webview. But, if I remove the swipetorefresh then it is zooming perfectly. This the layout:

Solution 1:

Got this one working with changing the height attribute of the underlying Webview.

For NestedScrollView use attribute

android:fillViewport="true"

and for WebView use android:layout_height="wrap_content"

Post a Comment for "Can't Zoom The Webview Under Swipe To Refresh"