Searched refs:visible (Results 1 - 25 of 80) sorted by path

1234

/frameworks/base/core/java/android/app/
H A DActivity.java162 * <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 t
3623 setVisible(boolean visible) argument
4063 setProgressBarVisibility(boolean visible) argument
4076 setProgressBarIndeterminateVisibility(boolean visible) argument
[all...]
H A DStatusBarManager.java149 public void setIconVisibility(String slot, boolean visible) { argument
153 svc.setIconVisibility(slot, visible);
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java315 public void setGestureVisible(boolean visible) { argument
316 mGestureVisible = visible;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java95 * while a third could have no input area (and thus not be visible to the
124 * as long as the input view is visible, you will see user interaction in
240 * The IME is active. It may or may not be visible.
246 * The IME is visible.
550 * UI, will only pan if needed to make the current focus visible, and
552 * needed to make the focus visible. This value is relative to the top edge
580 * the visible insets can be touched.
719 boolean visible = mWindowVisible;
730 if (visible) {
743 // If the candidates are currently visible, mak
[all...]
/frameworks/base/core/java/android/os/
H A DLocalPowerManager.java36 void setKeyboardVisibility(boolean visible); argument
/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperEngine.aidl27 void setVisibility(boolean visible);
H A DWallpaperService.java259 public void dispatchAppVisibility(boolean visible) {
264 visible ? 1 : 0);
333 * Return whether the wallpaper is currently visible to the user,
401 * Called to inform you of the wallpaper becoming visible or
403 * CPU while it is visible.</em>.
405 public void onVisibilityChanged(boolean visible) { argument
702 // don't want wallpapers running when not visible.
774 void doVisibilityChanged(boolean visible) { argument
776 mVisible = visible;
783 boolean visible
964 setVisibility(boolean visible) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java161 Visible[] visible = sp.getSpans(0, sp.length(), Visible.class);
163 for (int a = 0; a < visible.length; a++) {
164 if (sp.getSpanStart(visible[a].mTransformer) >= 0) {
165 st = sp.getSpanStart(visible[a]);
166 en = sp.getSpanEnd(visible[a]);
202 Visible[] visible = sp.getSpans(0, sp.length(), Visible.class);
203 nvisible = visible.length;
208 if (sp.getSpanStart(visible[i].mTransformer) >= 0) {
209 starts[i] = sp.getSpanStart(visible[i]);
210 ends[i] = sp.getSpanEnd(visible[
[all...]
/frameworks/base/core/java/android/view/
H A DIWindow.aidl50 void dispatchAppVisibility(boolean visible);
H A DIWindowManager.aidl97 void setAppVisibility(IBinder token, boolean visible);
H A DMenu.java39 * <b>expanded menus</b> (only available if six or more menu items are visible,
345 * @param visible If true the items are visible, else they are hidden.
349 public void setGroupVisible(int group, boolean visible); argument
362 * Return whether the menu currently has item items that are visible.
364 * @return True if there is one or more item visible,
H A DMenuItem.java370 * Sets the visibility of the menu item. Even if a menu item is not visible,
374 * @param visible If true then the item will be visible; if false it is
378 public MenuItem setVisible(boolean visible); argument
383 * @return If true the item is visible; else it is hidden.
390 * visible.
H A DSurfaceView.java60 * visible; you should implement {@link SurfaceHolder.Callback#surfaceCreated}
356 * SurfaceView is in will be visible on top of its surface.
413 + " visible=" + visibleChanged
418 final boolean visible = mVisible = mRequestedVisible;
466 mDrawingStopped = !visible;
472 visible ? VISIBLE : GONE,
481 + ", vis=" + visible + ", frame=" + mWinFrame);
511 if (mSurfaceCreated && (surfaceChanged || (!visible && visibleChanged))) {
524 if (visible) {
632 public void dispatchAppVisibility(boolean visible) { argument
[all...]
H A DViewDebug.java1182 private static void captureViewLayer(View view, DataOutputStream clientStream, boolean visible) argument
1185 final boolean localVisible = view.getVisibility() == View.VISIBLE && visible;
H A DViewGroup.java903 // Only track this on disappearing views - appearing views are already visible
1196 public void dispatchSystemUiVisibilityChanged(int visible) { argument
1197 super.dispatchSystemUiVisibilityChanged(visible);
1203 child.dispatchSystemUiVisibilityChanged(visible);
4869 * @param view The View object to be kept visible even if it gets removed from its parent.
4887 * @return view The View object that has been removed but is being kept around in the visible
4918 // those items visible after they've been 'removed'
H A DViewRootImpl.java208 final Rect mVisRect; // used to retrieve visible rect of focused view.
692 void handleAppVisibility(boolean visible) { argument
693 if (mAppVisible != visible) {
694 mAppVisible = visible;
933 // will be (assuming the window is visible).
1193 + " visible=" + mPendingVisibleInsets.toShortString()
1664 // End any pending transitions on this non-visible window
2069 // going to make the focus visible... otherwise we scroll
2091 // view is visible.
2106 // within the visible par
3924 dispatchAppVisibility(boolean visible) argument
4128 dispatchAppVisibility(boolean visible) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java1505 * Return the amount of the titlebarview (if any) that is visible
2903 // Used to avoid sending many visible rect messages.
2943 // Sets r to be the visible rectangle of our webview in view coordinates
2949 // Sets r to be our visible rectangle in content coordinates
2954 // the visible height back in to account for the fact that if the title
2955 // bar is partially visible, the part of the visible rect which is
2963 // Sets r to be our visible rectangle in content coordinates. We use this
2971 // the visible height back in to account for the fact that if the title
2972 // bar is partially visible, th
[all...]
H A DZoomControlEmbedded.java101 public void onVisibilityChanged(boolean visible) { argument
102 if (visible) {
/frameworks/base/core/java/android/widget/
H A DAbsListView.java99 * notification is received and only if the last item is already visible
107 * are currently visible.
694 * @param firstVisibleItem the index of the first visible cell (ignore if
696 * @param visibleItemCount the number of visible cells
1216 * If fast scroll is visible, then don't draw the vertical scrollbar.
1226 * is computed based on the number of visible pixels in the visible items. This
1234 * visible items inside the adapter. This provides a stable scrollbar as the user
1880 final boolean visible = getWindowVisibility() == View.VISIBLE;
1881 if (mFiltered && visible
[all...]
H A DAutoCompleteTextView.java418 * @return Whether the drop-down is visible as long as there is {@link #enoughToFilter()}
427 * Sets whether the drop-down should remain visible as long as there is there is
435 * @param dropDownAlwaysVisible Whether to keep the drop-down visible.
1027 * @param visible whether the ime should be in front. If false, the ime is pushed to
1031 public void ensureImeVisible(boolean visible) { argument
1032 mPopup.setInputMethodMode(visible
1069 * ignore outside touch even when the drop down is not set to always visible.
H A DSearchView.java75 * If you want the search field to always be visible, then call setIconifiedByDefault(false).
462 * relevant when the text field is not visible by default. Calling {@link #setIconified
564 * fully visible.
695 // Visibility of views that are visible when collapsed
776 private void setImeVisibility(final boolean visible) { argument
777 if (visible) {
1061 * criteria apply to make the voice button visible.
H A DTextView.java2385 * Sets whether the soft input method will be made visible when this
2397 * Returns whether the soft input method will be made visible when this
4418 * For selection, ensure start or end is visible depending on controller's state.
6950 * Is there whitespace visible at the left? Fix it if so.
6955 * Is there whitespace visible at the right? Fix it if so.
7019 * Move the cursor, if needed, so that it is at an offset that is visible
7036 // First: make sure the line is visible on screen:
7054 // Next: make sure the character is visible on screen:
7316 * Set whether the cursor is visible. The default is true.
7321 public void setCursorVisible(boolean visible) { argument
[all...]
H A DZoomButtonsController.java52 * view and does the hit detection locally (attaches when visible, detaches when invisible).
184 // Doh, it is still null, just ignore the set visible call
186 "Cannot make the zoom controller visible if the owner view is " +
330 * Whether the zoom controls are visible to the user.
332 * @return Whether the zoom controls are visible to the user.
339 * Sets whether the zoom controls should be visible to the user.
341 * @param visible Whether the zoom controls should be visible to the user.
343 public void setVisible(boolean visible) { argument
345 if (visible) {
689 onVisibilityChanged(boolean visible) argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBarService.aidl31 void setIconVisibility(String slot, boolean visible);
H A DStatusBarIcon.java26 public boolean visible = true; field in class:StatusBarIcon
42 + " level=" + this.iconLevel + " visible=" + visible
50 that.visible = this.visible;
65 this.visible = in.readInt() != 0;
74 out.writeInt(this.visible ? 1 : 0);

Completed in 282 milliseconds

1234