1. 程式人生 > >android中如何去掉webview的滾動條

android中如何去掉webview的滾動條

android中webview的預設的滾動條真是難看呀,於是可以用以下面的程式碼給去掉

webView.setHorizontalScrollBarEnabled(false);//水平不顯示
webView.setVerticalScrollBarEnabled(false); //垂直不顯示