Home | History | Annotate | Download | only in android

Lines Matching refs:activity

18  * @addtogroup NativeActivity Native Activity
77 * 'activity' instead of 'clazz', since it's a reference to the
129 * NativeActivity has started. See Java documentation for Activity.onStart()
132 void (*onStart)(ANativeActivity* activity);
135 * NativeActivity has resumed. See Java documentation for Activity.onResume()
138 void (*onResume)(ANativeActivity* activity);
142 * See Java documentation for Activity.onSaveInstanceState() for more
149 void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
152 * NativeActivity has paused. See Java documentation for Activity.onPause()
155 void (*onPause)(ANativeActivity* activity);
158 * NativeActivity has stopped. See Java documentation for Activity.onStop()
161 void (*onStop)(ANativeActivity* activity);
164 * NativeActivity is being destroyed. See Java documentation for Activity.onDestroy()
167 void (*onDestroy)(ANativeActivity* activity);
173 void (*onWindowFocusChanged)(ANativeActivity* activity, int hasFocus);
176 * The drawing window for this native activity has been created. You
179 void (*onNativeWindowCreated)(ANativeActivity* activity, ANativeWindow* window);
182 * The drawing window for this native activity has been resized. You should
186 void (*onNativeWindowResized)(ANativeActivity* activity, ANativeWindow* window);
189 * The drawing window for this native activity needs to be redrawn. To avoid
194 void (*onNativeWindowRedrawNeeded)(ANativeActivity* activity, ANativeWindow* window);
197 * The drawing window for this native activity is going to be destroyed.
204 void (*onNativeWindowDestroyed)(ANativeActivity* activity, ANativeWindow* window);
207 * The input queue for this native activity's window has been created.
210 void (*onInputQueueCreated)(ANativeActivity* activity, AInputQueue* queue);
213 * The input queue for this native activity's window is being destroyed.
217 void (*onInputQueueDestroyed)(ANativeActivity* activity, AInputQueue* queue);
222 void (*onContentRectChanged)(ANativeActivity* activity, const ARect* rect);
228 void (*onConfigurationChanged)(ANativeActivity* activity);
235 void (*onLowMemory)(ANativeActivity* activity);
240 * application's native activity. It is called with the activity instance (see
246 typedef void ANativeActivity_createFunc(ANativeActivity* activity,
258 * Finish the given activity. Its finish() method will be called, causing it
263 void ANativeActivity_finish(ANativeActivity* activity);
266 * Change the window format of the given activity. Calls getWindow().setFormat()
267 * of the given activity. Note that this method can be called from
271 void ANativeActivity_setWindowFormat(ANativeActivity* activity, int32_t format);
274 * Change the window flags of the given activity. Calls getWindow().setFlags()
275 * of the given activity. Note that this method can be called from
279 void ANativeActivity_setWindowFlags(ANativeActivity* activity,
302 * Show the IME while in the given activity. Calls InputMethodManager.showSoftInput()
303 * for the given activity. Note that this method can be called from
307 void ANativeActivity_showSoftInput(ANativeActivity* activity, uint32_t flags);
327 * Hide the IME while in the given activity. Calls InputMethodManager.hideSoftInput()
328 * for the given activity. Note that this method can be called from
332 void ANativeActivity_hideSoftInput(ANativeActivity* activity, uint32_t flags);