我想在加载屏幕的背景中加载一些东西(带动画)。 我正在尝试使用pthread,但它不适用于android。在Windows上没有任何问题。
我有这样的线程函数:
static void* ThreadFunction(void *o)
{
CCMessageBox("ThreadFunction", "MainLayer");
return NULL;
}
并创建这样的线程:
pthread_t thread;
CCMessageBox("pthread_create", "MainLayer");
pthread_create(&thread, NULL, ThreadFunction, 0);
在Windows上一切正常:我看到2条消息。在android上我只看到第一条消息(“pthread_create”)。
我尝试在我的图层的onEnter
,onClick
,constructor
方法中创建线程。
我使用的是cocos2d-x 2.0.4。有人可以帮帮我吗?
答案 0 :(得分:0)
解决方案是使用CCHttpClient
。