Home | History | Annotate | Download | only in android

Lines Matching refs:activity

104      * NativeActivity has started.  See Java documentation for Activity.onStart()
107 void (*onStart)(ANativeActivity* activity);
110 * NativeActivity has resumed. See Java documentation for Activity.onResume()
113 void (*onResume)(ANativeActivity* activity);
117 * See Java documentation for Activity.onSaveInstanceState() for more
124 void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
127 * NativeActivity has paused. See Java documentation for Activity.onPause()
130 void (*onPause)(ANativeActivity* activity);
133 * NativeActivity has stopped. See Java documentation for Activity.onStop()
136 void (*onStop)(ANativeActivity* activity);
139 * NativeActivity is being destroyed. See Java documentation for Activity.onDestroy()
142 void (*onDestroy)(ANativeActivity* activity);
148 void (*onWindowFocusChanged)(ANativeActivity* activity, int hasFocus);
151 * The drawing window for this native activity has been created. You
154 void (*onNativeWindowCreated)(ANativeActivity* activity, ANativeWindow* window);
157 * The drawing window for this native activity has been resized. You should
161 void (*onNativeWindowResized)(ANativeActivity* activity, ANativeWindow* window);
164 * The drawing window for this native activity needs to be redrawn. To avoid
169 void (*onNativeWindowRedrawNeeded)(ANativeActivity* activity, ANativeWindow* window);
172 * The drawing window for this native activity is going to be destroyed.
179 void (*onNativeWindowDestroyed)(ANativeActivity* activity, ANativeWindow* window);
182 * The input queue for this native activity's window has been created.
185 void (*onInputQueueCreated)(ANativeActivity* activity, AInputQueue* queue);
188 * The input queue for this native activity's window is being destroyed.
192 void (*onInputQueueDestroyed)(ANativeActivity* activity, AInputQueue* queue);
197 void (*onContentRectChanged)(ANativeActivity* activity, const ARect* rect);
203 void (*onConfigurationChanged)(ANativeActivity* activity);
210 void (*onLowMemory)(ANativeActivity* activity);
215 * application's native activity. It is called with the activity instance (see
221 typedef void ANativeActivity_createFunc(ANativeActivity* activity,
233 * Finish the given activity. Its finish() method will be called, causing it
238 void ANativeActivity_finish(ANativeActivity* activity);
241 * Change the window format of the given activity. Calls getWindow().setFormat()
242 * of the given activity. Note that this method can be called from
246 void ANativeActivity_setWindowFormat(ANativeActivity* activity, int32_t format);
249 * Change the window flags of the given activity. Calls getWindow().setFlags()
250 * of the given activity. Note that this method can be called from
254 void ANativeActivity_setWindowFlags(ANativeActivity* activity,
267 * Show the IME while in the given activity. Calls InputMethodManager.showSoftInput()
268 * for the given activity. Note that this method can be called from
272 void ANativeActivity_showSoftInput(ANativeActivity* activity, uint32_t flags);
284 * Hide the IME while in the given activity. Calls InputMethodManager.hideSoftInput()
285 * for the given activity. Note that this method can be called from
289 void ANativeActivity_hideSoftInput(ANativeActivity* activity, uint32_t flags);