如何隐藏WebView的滚动条

其实方法很简单,只要在xml布局文件上加上这个属性android:scrollbars=“none”:

    <WebView
        android:id="@+id/x5_webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="none" />

猜你喜欢

转载自blog.csdn.net/weixin_40763897/article/details/93851221