How to disable horizontal scrolling in Android webview

前端 未结 8 563
星月不相逢
星月不相逢 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条回答
  •  醉酒成梦
    2020-12-24 09:58

     webView.setHorizontalScrollBarEnabled(false);
    

    Define whether the horizontal scrollbar should be drawn or not. The scrollbar is not drawn by default.

提交回复
热议问题