Searched refs:showing (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardStateCallback.aidl19 void onShowingStateChanged(boolean showing);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitorCallback.java72 * @param showing Indicates if the keyguard is now visible.
74 public void onKeyguardVisibilityChanged(boolean showing) { } argument
76 public void onKeyguardVisibilityChangedRaw(boolean showing) { argument
78 if (showing == mShowing
80 onKeyguardVisibilityChanged(showing);
82 mShowing = showing;
H A DKeyguardDisplayManager.java92 protected void updateDisplays(boolean showing) { argument
93 if (showing) {
H A DKeyguardStatusView.java60 public void onKeyguardVisibilityChanged(boolean showing) {
61 if (showing) {
62 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
H A DKeyguardUpdateMonitor.java423 // wake-up (if Keyguard is not showing), so we don't need to listen until Keyguard is
1462 public void onKeyguardVisibilityChanged(boolean showing) { argument
1463 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
1464 mKeyguardIsVisible = showing;
1468 cb.onKeyguardVisibilityChangedRaw(showing);
1471 if (!showing) {
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardStateMonitor.java87 public void onShowingStateChanged(boolean showing) { argument
88 mIsShowing = showing;
89 mOnShowingStateChangedCallback.onShowingStateChanged(showing);
131 void onShowingStateChanged(boolean showing); argument
H A DKeyguardServiceDelegate.java57 // Assume keyguard is showing and secure until we know for sure. This is here in
60 showing = true;
66 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
141 mKeyguardState.showing = false;
201 mKeyguardState.showing = mKeyguardService.isShowing();
203 return mKeyguardState.showing;
433 pw.println(prefix + "showing=" + mKeyguardState.showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitor.java107 public void notifyKeyguardState(boolean showing, boolean secure, boolean occluded) { argument
108 if (mShowing == showing && mSecure == secure && mOccluded == occluded) return;
109 mShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java131 public static void traceKeyguardBouncerChanged(boolean showing) { argument
133 log("bouncer " + showing);
148 public static void traceKeyguard(boolean showing) { argument
150 log("keyguard " + showing);
151 if (!showing) {
261 public void onKeyguardVisibilityChanged(boolean showing) {
262 traceKeyguard(showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationCustomViewWrapper.java135 public void setShowingLegacyBackground(boolean showing) { argument
136 super.setShowingLegacyBackground(showing);
137 mShowingLegacyBackground = showing;
H A DNotificationViewWrapper.java161 public void setShowingLegacyBackground(boolean showing) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowManager.java255 public void setKeyguardShowing(boolean showing) { argument
256 mCurrentState.keyguardShowing = showing;
281 public void setBouncerShowing(boolean showing) { argument
282 mCurrentState.bouncerShowing = showing;
286 public void setBackdropShowing(boolean showing) { argument
287 mCurrentState.backdropShowing = showing;
306 public void setHeadsUpShowing(boolean showing) { argument
307 mCurrentState.headsUpShowing = showing;
H A DStatusBarKeyguardViewManager.java40 * Manages creating, showing, hiding and resetting the keyguard within the status bar. Calls back
50 // Delay for showing the navigation bar when the bouncer appears. This should be kept in sync
130 // The keyguard might be showing (already). So we need to hide it.
422 * @return Whether the keyguard is showing
451 // Keyguard is not going away, thus we are showing the navigation bar because the
466 boolean showing = mShowing;
472 if ((bouncerDismissible || !showing || remoteInputActive) !=
475 if (bouncerDismissible || !showing || remoteInputActive) {
508 if ((showing && !occluded) != (mLastShowing && !mLastOccluded) || mFirstUpdate) {
509 updateMonitor.onKeyguardVisibilityChanged(showing
[all...]
H A DPanelBar.java63 public void setBouncerShowing(boolean showing) { argument
64 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
H A DScrimController.java111 public void setKeyguardShowing(boolean showing) { argument
112 mKeyguardShowing = showing;
158 public void setBouncerShowing(boolean showing) { argument
159 mBouncerShowing = showing;
H A DKeyguardStatusBarView.java251 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
252 mKeyguardUserSwitcherShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogMotion.java81 private void setShowing(boolean showing) { argument
82 if (showing == mShowing) return;
83 mShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java86 /** Are we showing the "public" version */
935 // Don't translate if guts are showing.
1044 final NotificationContentView showing = getShowingLayout();
1045 if (showing != null) {
1046 showing.setDark(dark, fade, delay);
1544 public void setShowingLegacyBackground(boolean showing) { argument
1545 super.setShowingLegacyBackground(showing);
1546 mPrivateLayout.setShowingLegacyBackground(showing);
1547 mPublicLayout.setShowingLegacyBackground(showing);
H A DActivatableNotificationView.java440 public void setShowingLegacyBackground(boolean showing) { argument
441 mShowingLegacyBackground = showing;
/frameworks/base/core/java/android/widget/
H A DFastScroller.java70 /** Minimum number of pages to justify showing a fast scroll thumb. */
73 /** Scroll thumb and preview not showing. */
153 /** Whether the primary text is showing. */
183 * <li>{@link #STATE_VISIBLE}, showing track and thumb
184 * <li>{@link #STATE_DRAGGING}, visible and showing preview
1124 final TextView showing;
1127 showing = mPrimaryText;
1130 showing = mSecondaryText;
1145 final Animator hideShowing = animateAlpha(showing, 0f).setDuration(DURATION_CROSS_FADE);
1160 // The current preview size is unaffected by hidden or showing
[all...]
H A DListPopupWindow.java573 boolean showing = isShowing();
574 if (showing) {
578 if (showing) {
591 * Show the popup list. If the list is already showing, this method
720 * <p>If the popup is showing, calling this method will take effect only
772 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
781 * to interact with the IME while it is showing, {@code false} otherwise.
792 * (e.g. if the popup was not showing, this method would return false.)
808 * @return The currently selected item or null if the popup is not showing.
942 // the list view is actually showing it
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java228 public void setShowingForActionMode(boolean showing) { argument
229 if (showing) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java619 boolean showing = isShowing();
620 if (showing) {
624 if (showing) {
637 * Show the popup list. If the list is already showing, this method
771 * <p>If the popup is showing, calling this method will take effect only
826 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
835 * to interact with the IME while it is showing, {@code false} otherwise.
846 * (e.g. if the popup was not showing, this method would return false.)
862 * @return The currently selected item or null if the popup is not showing.
995 // the list view is actually showing it
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java182 * showing the user the text that is being typed. Unlike the other UI elements,
456 boolean showing = isInputViewShown();
457 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
590 * as hiding or showing candidates) without disrupting the underlying
911 // If we were last showing the soft keyboard, try to do so again.
930 boolean showing = onEvaluateInputViewShown();
931 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
1081 * @param isCandidatesOnly If true, the window is only showing the
1127 * when the input method is in fullscreen mode, and thus showing extracted
1311 * other situations -- if showing o
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java94 * it of when the keyguard is showing, and events from the keyguard view itself
102 * - is the keyguard showing?
106 * - the keyguard is showing
118 * whether the keyguard should be showing, external apps and services may request
238 // cached value of whether we are showing (need to know this to quickly
347 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
384 + "keyguard is showing");
399 // If system user is provisioned, we might want to lock now to avoid showing launcher
435 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
451 + "showing; nee
1989 setShowingLocked(boolean showing) argument
[all...]

Completed in 499 milliseconds

12