0
点赞
收藏
分享

微信扫一扫

如何隐藏WebView的滚动条


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

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


举报

相关推荐

0 条评论