0

Webアプリケーション用のTizen IDEを使用して、エミュレーター画面の高さと幅を取得する可能性はありますか?

前もって感謝します

4

2 に答える 2

4

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);
        });
于 2015-06-02T03:13:37.993 に答える