标签:sdk
接android游戏sdk中,经常会遇到Looper报错,此时需要在主线程中调用sdk函数。
将sdk的函数放到UI线程中执行。
如:
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
}
});
本文出自 “Quick” 博客,请务必保留此出处http://quick007.blog.51cto.com/7454007/1774189
(android)Can't Create handler inside thread that has not called Looper.prepare()
标签:sdk
原文地址:http://quick007.blog.51cto.com/7454007/1774189