[]layaAir和android studio二次开发
我想通过layaAir中访问到index.html之后,执行js里面的方法返回到android studio Test类
// a、创建Test类
var Test=Laya.PlatformClass.createClass("com.layabox.test.Test"); // 这个名字要与下面声明的Java的类名匹配.
var a=false;
// 注册手指按下事件
document.addEventListener("touchstart",function(e){
a=!a;// 实现奇数次打开 偶数次关闭
// b、调用静态函数openlight 参数为a
Test.call("openlight",a);
});
// a、创建Test类
var Test=Laya.PlatformClass.createClass("com.layabox.test.Test"); // 这个名字要与下面声明的Java的类名匹配.
var a=false;
// 注册手指按下事件
document.addEventListener("touchstart",function(e){
a=!a;// 实现奇数次打开 偶数次关闭
// b、调用静态函数openlight 参数为a
Test.call("openlight",a);
});
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
zmc1220
赞同来自:
mPlugin.game_plugin_set_option("gameUrl", "http://192.168.X.192:8900/bin/index.html");
这种方法去访问?