Android, WebView.getWidth() == window.innerWidth
问题 What combination of META tag settings in HTML and WebSettings in Java should I use to get the following result: window.innerWidth in Javascript should be always (in any Android version and on any device) equal to the WebView width in pixels. For instance, I set the WebView width to 1024px. In Android AVD emulator, window.innerWidth is equal to 683px (2/3 of 1024, or 150% scale). I tried the following META: <meta name="viewport" content="width=device-width; user-scalable=no; initial-scale=1.0;