ANativeActivityCallbacks Struct Reference

ANativeActivityCallbacks Struct Reference

#include <native_activity.h>

Data Fields

void(* onStart )(ANativeActivity *activity)
 
void(* onResume )(ANativeActivity *activity)
 
void *(* onSaveInstanceState )(ANativeActivity *activity, size_t *outSize)
 
void(* onPause )(ANativeActivity *activity)
 
void(* onStop )(ANativeActivity *activity)
 
void(* onDestroy )(ANativeActivity *activity)
 
void(* onWindowFocusChanged )(ANativeActivity *activity, int hasFocus)
 
void(* onNativeWindowCreated )(ANativeActivity *activity, ANativeWindow *window)
 
void(* onNativeWindowResized )(ANativeActivity *activity, ANativeWindow *window)
 
void(* onNativeWindowRedrawNeeded )(ANativeActivity *activity, ANativeWindow *window)
 
void(* onNativeWindowDestroyed )(ANativeActivity *activity, ANativeWindow *window)
 
void(* onInputQueueCreated )(ANativeActivity *activity, AInputQueue *queue)
 
void(* onInputQueueDestroyed )(ANativeActivity *activity, AInputQueue *queue)
 
void(* onContentRectChanged )(ANativeActivity *activity, const ARect *rect)
 
void(* onConfigurationChanged )(ANativeActivity *activity)
 
void(* onLowMemory )(ANativeActivity *activity)
 

Detailed Description

These are the callbacks the framework makes into a native application. All of these callbacks happen on the main thread of the application. By default, all callbacks are NULL; set to a pointer to your own function to have it called.

Field Documentation

void(* onConfigurationChanged)(ANativeActivity *activity)

The current device AConfiguration has changed. The new configuration can be retrieved from assetManager.

void(* onContentRectChanged)(ANativeActivity *activity, const ARect *rect)

The rectangle in the window in which content should be placed has changed.

void(* onDestroy)(ANativeActivity *activity)

NativeActivity is being destroyed. See Java documentation for Activity.onDestroy() for more information.

void(* onInputQueueCreated)(ANativeActivity *activity, AInputQueue *queue)

The input queue for this native activity's window has been created. You can use the given input queue to start retrieving input events.

void(* onInputQueueDestroyed)(ANativeActivity *activity, AInputQueue *queue)

The input queue for this native activity's window is being destroyed. You should no longer try to reference this object upon returning from this function.

void(* onLowMemory)(ANativeActivity *activity)

The system is running low on memory. Use this callback to release resources you do not need, to help the system avoid killing more important processes.

void(* onNativeWindowCreated)(ANativeActivity *activity, ANativeWindow *window)

The drawing window for this native activity has been created. You can use the given native window object to start drawing.

void(* onNativeWindowDestroyed)(ANativeActivity *activity, ANativeWindow *window)

The drawing window for this native activity is going to be destroyed. You MUST ensure that you do not touch the window object after returning from this function: in the common case of drawing to the window from another thread, that means the implementation of this callback must properly synchronize with the other thread to stop its drawing before returning from here.

void(* onNativeWindowRedrawNeeded)(ANativeActivity *activity, ANativeWindow *window)

The drawing window for this native activity needs to be redrawn. To avoid transient artifacts during screen changes (such resizing after rotation), applications should not return from this function until they have finished drawing their window in its current state.

void(* onNativeWindowResized)(ANativeActivity *activity, ANativeWindow *window)

The drawing window for this native activity has been resized. You should retrieve the new size from the window and ensure that your rendering in it now matches.

void(* onPause)(ANativeActivity *activity)

NativeActivity has paused. See Java documentation for Activity.onPause() for more information.

void(* onResume)(ANativeActivity *activity)

NativeActivity has resumed. See Java documentation for Activity.onResume() for more information.

void*(* onSaveInstanceState)(ANativeActivity *activity, size_t *outSize)

Framework is asking NativeActivity to save its current instance state. See Java documentation for Activity.onSaveInstanceState() for more information. The returned pointer needs to be created with malloc(); the framework will call free() on it for you. You also must fill in outSize with the number of bytes in the allocation. Note that the saved state will be persisted, so it can not contain any active entities (pointers to memory, file descriptors, etc).

void(* onStart)(ANativeActivity *activity)

NativeActivity has started. See Java documentation for Activity.onStart() for more information.

void(* onStop)(ANativeActivity *activity)

NativeActivity has stopped. See Java documentation for Activity.onStop() for more information.

void(* onWindowFocusChanged)(ANativeActivity *activity, int hasFocus)

Focus has changed in this NativeActivity's window. This is often used, for example, to pause a game when it loses input focus.


The documentation for this struct was generated from the following file: