Lines Matching refs:visible

162  *     <li>If an activity has lost focus but is still visible (that is, a new non-full-sized
170 * however, it is no longer visible to the user so its window is hidden
199 * <li>The <b>visible lifetime</b> of an activity happens between a call to
208 * can be called multiple times, as the activity becomes visible and hidden
284 * <td>Called when the activity is becoming visible to the user.
316 * <td>Called when the activity is no longer visible to the user, because
389 * had been in the foreground or visible to the user, once {@link #onDestroy} is
597 * <li> <p>A <b>visible activity</b> (an activity that is visible to the user
601 * <li> <p>A <b>background activity</b> (an activity that is not visible to
604 * visible processes. If its process needs to be killed, when the user navigates
605 * back to the activity (making it visible on the screen again), its
625 * important than other non-visible applications) for the duration of the
1043 * is visible to the user; a system window such as the keyguard may be in
1045 * activity is visible to the user (for example, to resume a game).
1313 * Called when you are no longer visible to the user. You will next
2245 * focus. This is the best indicator of whether this activity is visible
3174 * returned back from the started activity. This is to avoid visible
3201 // the activity visible until the result is received. Setting
3267 // the activity visible until the result is received. Setting
3393 // the activity visible until the result is received. Setting
3614 * Control whether this activity's main window is visible. This is intended
3623 public void setVisible(boolean visible) {
3624 if (mVisibleFromClient != visible) {
3625 mVisibleFromClient = visible;
3627 if (visible) makeVisible();
3842 * time the activity is visible.
4061 * @param visible Whether to show the progress bars in the title.
4063 public final void setProgressBarVisibility(boolean visible) {
4064 getWindow().setFeatureInt(Window.FEATURE_PROGRESS, visible ? Window.PROGRESS_VISIBILITY_ON :
4074 * @param visible Whether to show the progress bars in the title.
4076 public final void setProgressBarIndeterminateVisibility(boolean visible) {
4078 visible ? Window.PROGRESS_VISIBILITY_ON : Window.PROGRESS_VISIBILITY_OFF);