Webアプリケーション用のTizen IDEを使用して、エミュレーター画面の高さと幅を取得する可能性はありますか?
前もって感謝します
You can use below method to get the values in a web app.
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);
});