隐藏滚动条时 Atrix 上的 Web 视图崩溃
我在布局中使用网络视图。如您所知,存在一个问题,您会在网络视图的右侧看到一条白线。这是因为 Web 视图中添加了滚动条。
现在您可以通过两种方式隐藏此滚动条
webView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
- < p>
webView.setVerticalScrollBarEnabled(false);
webView.setHorizontalScrollBarEnabled(false);
但问题是,当我这样做时,我的应用程序会在 Android Atrix 手机上崩溃。如果我注释掉这些行,它就可以正常工作。
对此有何建议?
I am using a web view in my layout. As you know there is an issue where you see a white line on the right hand side of the web view. This is because of the scroll bar that is added to the web view.
Now you can hide this scroll bar in two ways
webView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
webView.setVerticalScrollBarEnabled(false);
webView.setHorizontalScrollBarEnabled(false);
But the problem is when I do that my application crashes on Android Atrix phone. If I comment out these lines it works fine.
Any suggestions on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论