Can't scroll over image in webview

前端 未结 4 671
北海茫月
北海茫月 2021-01-21 22:25

I developed a webview app for android and iOS. I noticed that I can\'t scroll over a specific html element in the android app, while it works on iOS.

This is the website

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-21 23:00

    Have you tried setting this to your webView?

     webview.setVerticalScrollBarEnabled(true);
     webview.setHorizontalScrollBarEnabled(true);
    

提交回复
热议问题