How to disable horizontal scrolling in Android webview

前端 未结 8 544
星月不相逢
星月不相逢 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 10:03

    I just tried this and it worked like a charm, I didn't know it's this simple, just one line:

    mWebView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);
    

    Source: http://sharecoding.wordpress.com/2012/02/16/programmatically-disable-scroll-function-on-android-webview/

提交回复
热议问题