Back

GetDisplayHeight

Get display height in pixel (less android status bar & virtual button).

  app.GetDisplayHeight() → number: pixel

Example - Example



function OnStart()
{
    height = app.GetDisplayHeight();
    app.ShowPopup( height );
}
    Copy     Copy All       Run