Searched refs:visible (Results 76 - 100 of 107) sorted by relevance

12345

/frameworks/base/core/java/android/app/
H A DActivity.java167 * <li>If an activity has lost focus but is still visible (that is, a new non-full-sized
175 * however, it is no longer visible to the user so its window is hidden
204 * <li>The <b>visible lifetime</b> of an activity happens between a call to
213 * can be called multiple times, as the activity becomes visible and hidden
289 * <td>Called when the activity is becoming visible to the user.
321 * <td>Called when the activity is no longer visible to the user, because
394 * had been in the foreground or visible to the user, once {@link #onDestroy} is
613 * <li> <p>A <b>visible activity</b> (an activity that is visible to the user
617 * <li> <p>A <b>background activity</b> (an activity that is not visible t
4127 setVisible(boolean visible) argument
4606 setProgressBarVisibility(boolean visible) argument
4619 setProgressBarIndeterminateVisibility(boolean visible) argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java315 public void setGestureVisible(boolean visible) { argument
316 mGestureVisible = visible;
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java433 * @return Whether the drop-down is visible as long as there is {@link #enoughToFilter()}
442 * Sets whether the drop-down should remain visible as long as there is there is
450 * @param dropDownAlwaysVisible Whether to keep the drop-down visible.
1059 * @param visible whether the ime should be in front. If false, the ime is pushed to
1063 public void ensureImeVisible(boolean visible) { argument
1064 mPopup.setInputMethodMode(visible
1103 * ignore outside touch even when the drop down is not set to always visible.
H A DSearchView.java76 * If you want the search field to always be visible, then call setIconifiedByDefault(false).
483 * relevant when the text field is not visible by default. Calling {@link #setIconified
607 * fully visible.
749 // Visibility of views that are visible when collapsed
830 private void setImeVisibility(final boolean visible) { argument
831 if (visible) {
1122 * criteria apply to make the voice button visible.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java289 // shown when keyguard is visible and camera is available
390 private void setVisibleOrGone(View view, boolean visible) { argument
392 view.setVisibility(visible ? VISIBLE : GONE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java92 public void topAppWindowChanged(boolean visible); argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java101 long lastVisibleTime; // last time this activity became visible
129 boolean visible; // does this activity's window need to be shown? field in class:ActivityRecord
132 boolean nowVisible; // is this activity's window visible?
234 pw.print(" visible="); pw.print(visible);
374 visible = true;
915 // become visible.
923 "Was waiting for visible: " + r);
980 * This method will return true if the activity is either visible, is becoming visible, i
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java89 * If you want the search field to always be visible, then call
514 * relevant when the text field is not visible by default. Calling {@link #setIconified
638 * fully visible.
780 // Visibility of views that are visible when collapsed
861 private void setImeVisibility(final boolean visible) { argument
862 if (visible) {
1087 * criteria apply to make the voice button visible.
1760 void ensureImeVisible(AutoCompleteTextView view, boolean visible) { argument
1763 ensureImeVisible.invoke(view, visible);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java521 final boolean visible = mExpandedActionView == null &&
524 mTitleLayout.setVisibility(visible ? VISIBLE : GONE);
542 final boolean visible = mExpandedActionView == null &&
545 mTitleLayout.setVisibility(visible ? VISIBLE : GONE);
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css923 body { overflow:visible; }
937 overflow: visible;
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java108 * is visible at one time.
309 // if a cue is added that should be visible, need to refresh view
672 * @param visible true if subtitles should be drawn, false otherwise
674 public void setVisible(boolean visible); argument
H A DWebVttRenderer.java1080 // don't keep the state if we are not visible
1182 public void setVisible(boolean visible) { argument
1183 if (visible) {
/frameworks/base/services/java/com/android/server/wm/
H A DDragState.java122 mDragWindowHandle.visible = true;
181 /* call out to each visible window/session informing it about the drag
244 * previously been notified, i.e. it became visible after the drag operation
393 // Find the visible, touch-deliverable window under the given point
408 // not visible == don't tell about drags
H A DInputMonitor.java187 inputWindowHandle.visible = isVisible;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarView.java530 final boolean visible = mExpandedActionView == null &&
533 mTitleLayout.setVisibility(visible ? VISIBLE : GONE);
549 final boolean visible = mExpandedActionView == null &&
552 mTitleLayout.setVisibility(visible ? VISIBLE : GONE);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java958 public void reportClockVisible(boolean visible) { argument
959 mClockVisible = visible;
H A DSlidingChallengeLayout.java61 // when challenge is fully visible
72 // Range: 0 (fully hidden) to 1 (fully visible)
220 * 1.f = fully visible/ready to be interacted with.
288 void animateHandle(boolean visible) { argument
293 final float targetAlpha = visible ? 1.f : 0.f;
466 * @return true if the challenge is at all visible.
H A DKeyguardHostView.java1515 final boolean visible = state == TRANSPORT_VISIBLE;
1517 if (!showing && (visible || shouldBeVisible)) {
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java97 * while a third could have no input area (and thus not be visible to the
126 * as long as the input view is visible, you will see user interaction in
242 * The IME is active. It may or may not be visible.
248 * The IME is visible.
558 * UI, will only pan if needed to make the current focus visible, and
560 * needed to make the focus visible. This value is relative to the top edge
588 * the visible insets can be touched.
752 boolean visible = mWindowVisible;
763 if (visible) {
776 // If the candidates are currently visible, mak
[all...]
/frameworks/base/core/java/android/view/
H A DViewDebug.java658 private static void captureViewLayer(View view, DataOutputStream clientStream, boolean visible) argument
661 final boolean localVisible = view.getVisibility() == View.VISIBLE && visible;
H A DViewGroup.java1036 // Only track this on disappearing views - appearing views are already visible
1341 public void dispatchWindowSystemUiVisiblityChanged(int visible) { argument
1342 super.dispatchWindowSystemUiVisiblityChanged(visible);
1348 child.dispatchWindowSystemUiVisiblityChanged(visible);
1353 public void dispatchSystemUiVisibilityChanged(int visible) { argument
1354 super.dispatchSystemUiVisibilityChanged(visible);
1360 child.dispatchSystemUiVisibilityChanged(visible);
5297 * @param view The View object to be kept visible even if it gets removed from its parent.
5315 * @return view The View object that has been removed but is being kept around in the visible
5346 // those items visible afte
[all...]
H A DViewRootImpl.java194 final Rect mVisRect; // used to retrieve visible rect of focused view.
784 void handleAppVisibility(boolean visible) { argument
785 if (mAppVisible != visible) {
786 mAppVisible = visible;
886 // updates that lie outside of the visible region
1197 // will be (assuming the window is visible).
1419 + " visible=" + mPendingVisibleInsets.toShortString()
2609 // going to make the focus visible... otherwise we scroll
2626 // view is visible.
2640 // within the visible par
5790 dispatchAppVisibility(boolean visible) argument
6132 dispatchAppVisibility(boolean visible) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp407 // we have to set the visible region on every frame because
410 // Apply this display's projection's viewport to the visible region
413 Region visible = tr.transform(visibleRegion.intersect(hw->getViewport())); local
414 layer.setVisibleRegionScreen(visible);
792 // invalidate and recompute the visible regions if needed
797 // invalidate and recompute the visible regions if needed
1005 // recompute visible region
1043 // trigger a visible-region recompute.
1056 // recompute visible region
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java937 // no restrictive rules; network is visible
4651 // Mark notification as not visible
4681 private void setProvNotificationVisible(boolean visible, int networkType, String extraInfo, argument
4684 log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
4692 if (visible) {
4742 loge("setNotificaitionVisible: visible notificationManager npe=" + npe);
4753 mIsNotificationVisible = visible;
4883 public void setProvisioningNotificationVisible(boolean visible, int networkType, argument
4886 setProvNotificationVisible(visible, networkTyp
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.cpp479 if (windowInfo->visible) {
491 // Error window is on top but not visible, so touch is dropped.
1227 if (windowInfo->visible) {
1655 && otherInfo->visible && !otherInfo->isTrustedOverlay()
1687 // to touch whatever was visible at the time. Even if focus changes or a new
3127 "visible=%s, canReceiveKeys=%s, flags=0x%08x, type=0x%08x, layer=%d, "
3134 toString(windowInfo->visible),

Completed in 960 milliseconds

12345