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.setScrollBarSt开发者_如何学编程yle(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?
精彩评论