魔王撒旦
void android_main(struct android_app* state) { // Make sure glue isn't stripped. app_dummy(); // loop waiting for stuff to do. while (1) { // Read all pending events. int ident; int events; struct android_poll_source* source; // Read events and draw a frame of animation. if ((ident = ALooper_pollAll(0, NULL, &events, (void**)&source)) >= 0) { // Process this event. if (source != NULL) { source->process(state, source); } } // draw a frame of animation bringTheAwesome(); } }
查看详细资料
TOP
原帖由 jun4rui 于 2011-1-13 11:04 发表 posted by wap, platform: GoogleChrome 早就有了,这都是第五版了,不过还是有较大改进