在android上的cocos2d-x pthread

时间:2013-10-10 09:51:14

标签: android pthreads cocos2d-x

我想在加载屏幕的背景中加载一些东西(带动画)。 我正在尝试使用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”)。

我尝试在我的图层的onEnteronClickconstructor方法中创建线程。 我使用的是cocos2d-x 2.0.4。有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

解决方案是使用CCHttpClient