This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsNavBarOnRight
Hello World
Checks if the Navigation Bar is on the righthand side of the display.
app.IsNavBarOnRight() →
Boolean
Example - Check NavBar is on the Dark Side
click to expand contents
function
OnStart
(
)
{
var
navOnRight
=
app
.
IsNavBarOnRight
(
)
;
app
.
Alert
(
navOnRight
,
"NavBar on right"
)
;
}
Copy
Copy All
Run
loading