Home | History | Annotate | Download | only in android

Lines Matching refs:activity

66      * 'activity' instead of 'clazz', since it's a reference to the
111 * NativeActivity has started. See Java documentation for Activity.onStart()
114 void (*onStart)(ANativeActivity* activity);
117 * NativeActivity has resumed. See Java documentation for Activity.onResume()
120 void (*onResume)(ANativeActivity* activity);
124 * See Java documentation for Activity.onSaveInstanceState() for more
131 void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
134 * NativeActivity has paused. See Java documentation for Activity.onPause()
137 void (*onPause)(ANativeActivity* activity);
140 * NativeActivity has stopped. See Java documentation for Activity.onStop()
143 void (*onStop)(ANativeActivity* activity);
146 * NativeActivity is being destroyed. See Java documentation for Activity.onDestroy()
149 void (*onDestroy)(ANativeActivity* activity);
155 void (*onWindowFocusChanged)(ANativeActivity* activity, int hasFocus);
158 * The drawing window for this native activity has been created. You
161 void (*onNativeWindowCreated)(ANativeActivity* activity, ANativeWindow* window);
164 * The drawing window for this native activity has been resized. You should
168 void (*onNativeWindowResized)(ANativeActivity* activity, ANativeWindow* window);
171 * The drawing window for this native activity needs to be redrawn. To avoid
176 void (*onNativeWindowRedrawNeeded)(ANativeActivity* activity, ANativeWindow* window);
179 * The drawing window for this native activity is going to be destroyed.
186 void (*onNativeWindowDestroyed)(ANativeActivity* activity, ANativeWindow* window);
189 * The input queue for this native activity's window has been created.
192 void (*onInputQueueCreated)(ANativeActivity* activity, AInputQueue* queue);
195 * The input queue for this native activity's window is being destroyed.
199 void (*onInputQueueDestroyed)(ANativeActivity* activity, AInputQueue* queue);
204 void (*onContentRectChanged)(ANativeActivity* activity, const ARect* rect);
210 void (*onConfigurationChanged)(ANativeActivity* activity);
217 void (*onLowMemory)(ANativeActivity* activity);
222 * application's native activity. It is called with the activity instance (see
228 typedef void ANativeActivity_createFunc(ANativeActivity* activity,
240 * Finish the given activity. Its finish() method will be called, causing it
245 void ANativeActivity_finish(ANativeActivity* activity);
248 * Change the window format of the given activity. Calls getWindow().setFormat()
249 * of the given activity. Note that this method can be called from
253 void ANativeActivity_setWindowFormat(ANativeActivity* activity, int32_t format);
256 * Change the window flags of the given activity. Calls getWindow().setFlags()
257 * of the given activity. Note that this method can be called from
261 void ANativeActivity_setWindowFlags(ANativeActivity* activity,
274 * Show the IME while in the given activity. Calls InputMethodManager.showSoftInput()
275 * for the given activity. Note that this method can be called from
279 void ANativeActivity_showSoftInput(ANativeActivity* activity, uint32_t flags);
291 * Hide the IME while in the given activity. Calls InputMethodManager.hideSoftInput()
292 * for the given activity. Note that this method can be called from
296 void ANativeActivity_hideSoftInput(ANativeActivity* activity, uint32_t flags);