把quick-3.5的UIWebview移植到quick-cocos2dx2.2.6 详解 quick cocos2dx 2.2.6增加WebView库 实现lua和webview交互
待编写......
代码已经整合进quick-cocos2dx2.2.6里,但是没有提交到官方。
https://github.com/pppoeuser1/quick-cocos2d-x-2.2.6
新增代码在lib/cocos2d-x/extensions/GUI/UIWebView
lib/cocos2d-x/cocos2dx/platform/android/java/src
使用方法:
local webview = WebView:create() webview:loadURL("") self:addChild(webview) webview:setJavascriptInterfaceScheme("mobilecall") webview:setOnJSCallback(function (sender,url) print(url) end)