Lines Matching refs:activity

66      * 'activity' instead of 'clazz', since it's a reference to the
121 void (*onStart)(ANativeActivity* activity);
127 void (*onResume)(ANativeActivity* activity);
138 void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
144 void (*onPause)(ANativeActivity* activity);
150 void (*onStop)(ANativeActivity* activity);
156 void (*onDestroy)(ANativeActivity* activity);
162 void (*onWindowFocusChanged)(ANativeActivity* activity, int hasFocus);
165 * The drawing window for this native activity has been created. You
168 void (*onNativeWindowCreated)(ANativeActivity* activity, ANativeWindow* window);
171 * The drawing window for this native activity has been resized. You should
175 void (*onNativeWindowResized)(ANativeActivity* activity, ANativeWindow* window);
178 * The drawing window for this native activity needs to be redrawn. To avoid
183 void (*onNativeWindowRedrawNeeded)(ANativeActivity* activity, ANativeWindow* window);
186 * The drawing window for this native activity is going to be destroyed.
193 void (*onNativeWindowDestroyed)(ANativeActivity* activity, ANativeWindow* window);
196 * The input queue for this native activity's window has been created.
199 void (*onInputQueueCreated)(ANativeActivity* activity, AInputQueue* queue);
202 * The input queue for this native activity's window is being destroyed.
206 void (*onInputQueueDestroyed)(ANativeActivity* activity, AInputQueue* queue);
211 void (*onContentRectChanged)(ANativeActivity* activity, const ARect* rect);
217 void (*onConfigurationChanged)(ANativeActivity* activity);
224 void (*onLowMemory)(ANativeActivity* activity);
229 * application's native activity. It is called with the activity instance (see
235 typedef void ANativeActivity_createFunc(ANativeActivity* activity,
247 * Finish the given activity. Its finish() method will be called, causing it
252 void ANativeActivity_finish(ANativeActivity* activity);
255 * Change the window format of the given activity. Calls getWindow().setFormat()
256 * of the given activity. Note that this method can be called from
260 void ANativeActivity_setWindowFormat(ANativeActivity* activity, int32_t format);
263 * Change the window flags of the given activity. Calls getWindow().setFlags()
264 * of the given activity. Note that this method can be called from
268 void ANativeActivity_setWindowFlags(ANativeActivity* activity,
281 * Show the IME while in the given activity. Calls InputMethodManager.showSoftInput()
282 * for the given activity. Note that this method can be called from
286 void ANativeActivity_showSoftInput(ANativeActivity* activity, uint32_t flags);
298 * Hide the IME while in the given activity. Calls InputMethodManager.hideSoftInput()
299 * for the given activity. Note that this method can be called from
303 void ANativeActivity_hideSoftInput(ANativeActivity* activity, uint32_t flags);