minimal example for full screen browser with droidscript

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);
        }
    );
}
0
所有评论 0
Avatar
@busylog
准则 博客 联系 反馈 © 2026 Geeknote