Skip to content

Latest commit

 

History

History
executable file
·
28 lines (20 loc) · 453 Bytes

File metadata and controls

executable file
·
28 lines (20 loc) · 453 Bytes

WebView

--工具包引入
require "lv_kit"

local scrW, scrH= System:screenSize()

webView = WebView();
webView:frame(20,20,300,500 );

webView:loadUrl("http://www.taobao.com");

webView:callback{
			onPageStarted = function()
				print("[webview] onPageStarted");
			end,
			onPageFinished = function()
				print("[webview] onPageFinished");
			end,
			onReceivedError = function()
				print("[webview] onReceivedError");
			end
		};