Lines Matching defs:onPause

105  *     <li> {@link #onPause} is where you deal with the user leaving your
215 * {@link android.app.Activity#onPause}. During this time the activity is
228 * {@link android.app.Activity#onPause} to commit changes to data and
243 * protected void onPause();
298 * <p>Always followed by <code>onPause()</code>.</td>
300 * <td align="center"><code>onPause()</code></td>
303 * <tr><th align="left" border="0">{@link android.app.Activity#onPause onPause()}</th>
349 * {@link #onPause} method to write any persistent data (such as user edits)
358 * persistent data in {@link #onPause} instead of {@link #onSaveInstanceState}
367 * safely called after {@link #onPause()} and allows and application to safely
373 * state, for example, between after <code>onPause()</code> to the start of
389 * lifecycle process of {@link #onPause},
496 * <li> <p>When an activity's <code>onPause()</code> method is called, it should
556 * protected void onPause() {
557 * super.onPause();
864 * {@link #onPause}, etc) executing.
1071 * {@link #onPause}, for your activity to start interacting with the user.
1087 * @see #onPause
1167 * {@link #onPause}, which is always called when an activity is being placed
1169 * is called before destruction. One example of when {@link #onPause} and
1173 * system avoids calling it. An example when {@link #onPause} is called and
1189 * no guarantees about whether it will occur before or after {@link #onPause}.
1195 * @see #onPause
1247 * be invoked on A. B will not be created until A's {@link #onPause} returns,
1279 protected void onPause() {
1280 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onPause " + this);
1292 * is called right before the activity's {@link #onPause} callback.
1321 * @see #onPause
1342 * @see #onPause
1355 * process running after its {@link #onPause} method is called.
1382 * provider, those edits should be committed in either {@link #onPause} or
1396 * @see #onPause
4081 * {@link #onPause} to determine whether the activity is simply pausing or
4608 * suggested stream value in onPause and onResume.
5206 onPause();
5212 " did not call through to super.onPause()");