问题
接入第三方sdk的时候,lua调java函数的过程中,一直返回false,-4,即java函数出现异常,报错内容是
Can't create handler inside thread that has not calledLooper.prepare()
大概意思是在子线程中,使用了UI组件,看了下代码,发现在java函数中使用了SurfaceView
原因
quick-cocos 在 Android 上以两个线程来运行,分别是负责图像渲染的 GL 线程和负责 Android 系统用户界面的 UI 线程。lua代码是在GL线程中运行的,所以回调函数也是在GL线程中运行的,而子线程是不能刷新UI的
解决办法
在UI线程中调用就好了
public static void luaCallJavaFunc(){
AppActivity.appActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
//把你的代码移到这里来就可以了
}
}