当前位置 : 主页 > 编程语言 > java >

如何隐藏WebView的滚动条

来源:互联网 收集:自由互联 发布时间:2022-08-10
其实方法很简单,只要在xml布局文件上加上这个属性android:scrollbars=“none”: WebView android : id = "@+id/x5_webview" android : layout_width = "match_parent" android : layout_height = "match_parent" android : scroll


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

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


上一篇:JavaWeb应用分层结构
下一篇:没有了
网友评论