转:http://blog.csdn.net/xiruanliuwei/article/details/7560914android
Android NDK为咱们提供了两种方式来实现咱们的native activity:app
一、The native_activity.h header defines the native version of the NativeActivity class. It函数
contains the callback interface and data structures that you need to create your nativeflex
activity. Because the main thread of your application handles the callbacks, your callbackui
implementations must not be blocking. If they block, you might receive ANR (Application Notthis
Responding) errors because your main thread will be unresponsive until the callback returns.spa
Read the comments in the .net
<ndk_root>/platforms/android-9/arch-arm/usr/include/android/native_activity.h file for线程
more information.orm
二、The android_native_app_glue.h file defines a static helper library built on top of the
native_activity.h interface. It spawns another thread to handle things such as callbacks or
input events. This prevents any callbacks from blocking your main thread and adds some
flexibility in how you implement the callbacks, so you might find this programming model a
bit easier to implement.
The <ndk_root>/sources/android/native_app_glue/android_native_app_glue.c
source is also available to you, so you can modify the implementation if you need. Read the
comments in the <ndk_root>/sources/android/native_app_glue/android_native_app_glue.h
file for more information.
经过上面的描述,咱们能够发现方式二会简单一些。在使用方式一实现native activity时,
须要注意在实现回调函数时,不要阻塞了main UI thread,不然会出现ANR。而方式二中,
则在一个新线程中建立一个事件循环执行回调函数,所以不会形成main UI thread阻塞。