How can I change Webview (window.innerWidth; window.innerHeight)? WebSettings seem doesn't has method to do that.
EDIT: I add solution here for simplification:
webView.setLayoutParams(new FrameLayout.LayoutParams(
200, // width
200 // height
));