웹 뷰 스크롤 바 없애기

안드로이드 하이브리드 앱에서 웹뷰에 스크롤이 생길 때, 스크롤 없애기. WebView webview = (WebView) findViewById(R.id.webview); // 세로 scroll 제거 webview .setHorizontalScrollBarEnabled(false); // 가로 scroll 제거 webview .setVerticalScrollBarEnabled(false);