我想知道是否有可能使用Tizen IDE为Web应用程序获取模拟器屏幕的高度和宽度。
提前致谢
答案 0 :(得分:4)
您可以使用以下方法获取网络应用中的值。
tizen.systeminfo.getPropertyValue("DISPLAY", function(disp) {
$("#resWidth").html(disp.resolutionWidth);
$("#resHeight").html(disp.resolutionHeight);
$("#dpiWidth").html(disp.dotsPerInchWidth);
$("#dpiHeight").html(disp.dotsPerInchHeight);
$("#physWidth").html(disp.physicalWidth);
$("#physHeight").html(disp.physicalHeight);
});
答案 1 :(得分:0)
或者使用 Screen API:
console.log(screen.height);
console.log(screen.width);