require"import" import "android.content.Context" local wl=activity.getApplicationContext().getSystemService(Context.CONNECTIVITY_SERVICE).getActiveNetworkInfo(); if wl== nilthen
local uiManager=this.uiManager activity.uiManager.getFragment(0).webView.parent.removeViewAt(2)--去除加载进度条 activity.uiManager.currentPage.webView.loadUrl("file://"..activity.getLuaDir().."/index.html")--第一个浏览页加载本地网页
else --远程获取,其实和远程更新那里类似 Http.get("https://example.com/text.lua",function(code,content)--链接填写远程text.lua文件直链,内容在下边 if code==200then content=content:gsub("。","\n") or content; 浏览页网址=content:match("【浏览页网址】(.-)【浏览页网址】") local uiManager=this.uiManager --第一个浏览页加载网页链接 activity.uiManager.getFragment(0).webView.loadUrl(""..浏览页网址)--加载远程填写的网址。 end end)