Droidscript site: https://droidscript.org/
Google Play: https://play.google.com/store/apps/details?id=com.smartphoneremote.androidscriptfree
Docs: https://droidscript.github.io/Docs/docs/latest/Docs.htm
function OnStart()
{
app.SetScreenMode("Game");
lay = app.CreateLayout("linear", "FillXY");
web = app.CreateWebView(
1, 1,
"Wide,NoActionBar,NoScrollBars,NoLongTouch,NoLocate"
);
lay.AddChild(web);
app.AddLayout(lay);
app.ChooseFile(
"Open HTML",
"text/html",
function(url)
{
web.LoadUrl(url);
}
);
}