How to disable horizontal scrolling in Android webview

前端 未结 8 547
星月不相逢
星月不相逢 2020-12-24 09:53

I want to have only vertical scrolling in my webview and don\'t want any horizontal scrolling.

webSettings.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);

8条回答
  •  梦毁少年i
    2020-12-24 10:11

      webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.TEXT_AUTOSIZING);
    

    in Android 7.1

提交回复
热议问题