Android WebView inside ScrollView scrolls only scrollview

前端 未结 7 587
無奈伤痛
無奈伤痛 2020-11-27 02:26

In my app I have a ScrollView that contains some linearviews, some textviews and One Webview, then other linear layouts etc. The problem is that the WebView does not scroll.

7条回答
  •  广开言路
    2020-11-27 03:17

    Just add one line in class file

    mWebview.setNestedScrollingEnabled(true);
    

    or add in Webview tag in XML

    android:nestedScrollingEnabled="true"
    

    Warning: only for API 21 and 21+

提交回复
热议问题