This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsTablet
Hello World
Checks if the user device is a tablet.
app.IsTablet() →
Boolean
See Also:
IsChrome
Example - Check Tablet
click to expand contents
function
OnStart
(
)
{
tablet
=
app
.
IsTablet
(
)
;
app
.
ShowPopup
(
tablet
,
"Is Tablet:"
)
;
}
Copy
Copy All
Run
loading