我尝试使特定的网页适合我的android webview。有些人使用javascript的屏幕对象(screen.width)读取屏幕大小。 webview提供了设备显示属性,我宁愿自己设置。
我也在寻找一种修改window.innerHeight和width的方法。 有什么办法吗?
答案 0 :(得分:0)
试试这个
WebView browser = (WebView) findViewById(R.id.webview);
browser.getSettings().setLoadWithOverviewMode(true);
browser.getSettings().setUseWideViewPort(true);
根据屏幕尺寸
修复尺寸