Get the display height of the app in pixels.
app.GetDisplayHeight() → Number: pixel
Therefore the android status bar and virtual buttons won't be included to the value.
See Also: GetDisplayWidth, GetScreenHeight
Example - Show display height
function OnStart()
{
var height = app.GetDisplayHeight();
app.Alert( height );
}
def OnStart():
height = app.GetDisplayHeight()
app.Alert( height )