Native Activity
Files
Data Structures | |
struct | ANativeActivity |
struct | ANativeActivityCallbacks |
struct | ANativeWindow_Buffer |
struct | ARect |
Typedefs | |
typedef struct ANativeActivity | ANativeActivity |
typedef struct ANativeActivityCallbacks | ANativeActivityCallbacks |
typedef void | ANativeActivity_createFunc (ANativeActivity *activity, void *savedState, size_t savedStateSize) |
typedef struct ANativeWindow | ANativeWindow |
typedef struct ANativeWindow_Buffer | ANativeWindow_Buffer |
typedef struct ARect | ARect |
Enumerations | |
enum | < ANATIVEACTIVITY_SHOW_SOFT_INPUT_IMPLICIT = 0x0001, ANATIVEACTIVITY_SHOW_SOFT_INPUT_FORCED = 0x0002 > |
enum | < ANATIVEACTIVITY_HIDE_SOFT_INPUT_IMPLICIT_ONLY = 0x0001, ANATIVEACTIVITY_HIDE_SOFT_INPUT_NOT_ALWAYS = 0x0002 > |
enum | < WINDOW_FORMAT_RGBA_8888 = 1, WINDOW_FORMAT_RGBX_8888 = 2, WINDOW_FORMAT_RGB_565 = 4 > |
enum | < AWINDOW_FLAG_ALLOW_LOCK_WHILE_SCREEN_ON = 0x00000001, AWINDOW_FLAG_DIM_BEHIND = 0x00000002, AWINDOW_FLAG_BLUR_BEHIND = 0x00000004, AWINDOW_FLAG_NOT_FOCUSABLE = 0x00000008, AWINDOW_FLAG_NOT_TOUCHABLE = 0x00000010, AWINDOW_FLAG_NOT_TOUCH_MODAL = 0x00000020, AWINDOW_FLAG_TOUCHABLE_WHEN_WAKING = 0x00000040, AWINDOW_FLAG_KEEP_SCREEN_ON = 0x00000080, AWINDOW_FLAG_LAYOUT_IN_SCREEN = 0x00000100, AWINDOW_FLAG_LAYOUT_NO_LIMITS = 0x00000200, AWINDOW_FLAG_FULLSCREEN = 0x00000400, AWINDOW_FLAG_FORCE_NOT_FULLSCREEN = 0x00000800, AWINDOW_FLAG_DITHER = 0x00001000, AWINDOW_FLAG_SECURE = 0x00002000, AWINDOW_FLAG_SCALED = 0x00004000, AWINDOW_FLAG_IGNORE_CHEEK_PRESSES = 0x00008000, AWINDOW_FLAG_LAYOUT_INSET_DECOR = 0x00010000, AWINDOW_FLAG_ALT_FOCUSABLE_IM = 0x00020000, AWINDOW_FLAG_WATCH_OUTSIDE_TOUCH = 0x00040000, AWINDOW_FLAG_SHOW_WHEN_LOCKED = 0x00080000, AWINDOW_FLAG_SHOW_WALLPAPER = 0x00100000, AWINDOW_FLAG_TURN_SCREEN_ON = 0x00200000, AWINDOW_FLAG_DISMISS_KEYGUARD = 0x00400000 > |
Functions | |
void | ANativeActivity_finish (ANativeActivity *activity) |
void | ANativeActivity_setWindowFormat (ANativeActivity *activity, int32_t format) |
void | ANativeActivity_setWindowFlags (ANativeActivity *activity, uint32_t addFlags, uint32_t removeFlags) |
void | ANativeActivity_showSoftInput (ANativeActivity *activity, uint32_t flags) |
void | ANativeActivity_hideSoftInput (ANativeActivity *activity, uint32_t flags) |
void | ANativeWindow_acquire (ANativeWindow *window) |
void | ANativeWindow_release (ANativeWindow *window) |
int32_t | ANativeWindow_getWidth (ANativeWindow *window) |
int32_t | ANativeWindow_getHeight (ANativeWindow *window) |
int32_t | ANativeWindow_getFormat (ANativeWindow *window) |
int32_t | ANativeWindow_setBuffersGeometry (ANativeWindow *window, int32_t width, int32_t height, int32_t format) |
int32_t | ANativeWindow_lock (ANativeWindow *window, ANativeWindow_Buffer *outBuffer, ARect *inOutDirtyBounds) |
int32_t | ANativeWindow_unlockAndPost (ANativeWindow *window) |
ANativeWindow * | ANativeWindow_fromSurface (JNIEnv *env, jobject surface) |
VariablesDetailed DescriptionTypedef DocumentationThis structure defines the native side of an android.app.NativeActivity. It is created by the framework, and handed to the application’s native code as it is being launched.
This is the function that must be in the native code to instantiate the application’s native activity. It is called with the activity instance (see above); if the code is being instantiated from a previously saved instance, the savedState will be non-NULL and point to the saved data. You must make any copy of this data you need – it will be released after you return from this function. 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. ANativeWindow is opaque type that provides access to a native window. A pointer can be obtained using ANativeWindow_fromSurface(). ANativeWindow is a struct that represents a windows buffer. A pointer can be obtained using ANativeWindow_lock(). ARect is a struct that represents a rectangular window area. Enumeration Type DocumentationFlags for ANativeActivity_showSoftInput; see the Java InputMethodManager API for documentation.
Finish the given activity. Its finish() method will be called, causing it to be stopped and destroyed. Note that this method can be called from any thread; it will send a message to the main thread of the process where the Java finish call will take place.
Hide the IME while in the given activity. Calls InputMethodManager.hideSoftInput() for the given activity. Note that this method can be called from any thread; it will send a message to the main thread of the process where the Java finish call will take place.
Change the window flags of the given activity. Calls getWindow().setFlags() of the given activity. Note that this method can be called from any thread; it will send a message to the main thread of the process where the Java finish call will take place. See window.h for flag constants.
Change the window format of the given activity. Calls getWindow().setFormat() of the given activity. Note that this method can be called from any thread; it will send a message to the main thread of the process where the Java finish call will take place.
Show the IME while in the given activity. Calls InputMethodManager.showSoftInput() for the given activity. Note that this method can be called from any thread; it will send a message to the main thread of the process where the Java finish call will take place.
Acquire a reference on the given ANativeWindow object. This prevents the object from being deleted until the reference is removed.
Return the ANativeWindow associated with a Java Surface object, for interacting with it through native code. This acquires a reference on the ANativeWindow that is returned; be sure to use ANativeWindow_release() when done with it so that it doesn’t leak.
Return the current pixel format of the window surface. Returns a negative value on error.
Return the current height in pixels of the window surface. Returns a negative value on error.
Return the current width in pixels of the window surface. Returns a negative value on error.
Lock the window’s next drawing surface for writing. inOutDirtyBounds is used as an in/out parameter, upon entering the function, it contains the dirty region, that is, the region the caller intends to redraw. When the function returns, inOutDirtyBounds is updated with the actual area the caller needs to redraw – this region is often extended by ANativeWindow_lock.
Remove a reference that was previously acquired with ANativeWindow_acquire().
Change the format and size of the window buffers. The width and height control the number of pixels in the buffers, not the dimensions of the window on screen. If these are different than the window’s physical size, then it buffer will be scaled to match that size when compositing it to the screen. For all of these parameters, if 0 is supplied then the window’s base value will come back in force. width and height must be either both zero or both non-zero.
Unlock the window’s drawing surface after previously locking it, posting the new buffer to the display. Источник |