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

12

/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardStateCallback.aidl19 void onShowingStateChanged(boolean showing);
/frameworks/base/packages/SystemUI/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.java70 public void onKeyguardVisibilityChanged(boolean showing) {
71 if (showing) {
72 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
H A DKeyguardUpdateMonitor.java1440 public void onKeyguardVisibilityChanged(boolean showing) { argument
1441 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
1442 mKeyguardIsVisible = showing;
1446 cb.onKeyguardVisibilityChangedRaw(showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java136 public static void traceKeyguardBouncerChanged(boolean showing) { argument
138 log("bouncer " + showing);
158 public static void traceKeyguard(boolean showing) { argument
160 log("keyguard " + showing);
161 if (!showing) {
296 public void onKeyguardVisibilityChanged(boolean showing) {
297 traceKeyguard(showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitorImpl.java96 public void notifyKeyguardState(boolean showing, boolean secure, boolean occluded) { argument
97 if (mShowing == showing && mSecure == secure && mOccluded == occluded) return;
98 mShowing = showing;
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardStateMonitor.java87 public void onShowingStateChanged(boolean showing) { argument
88 mIsShowing = showing;
H A DKeyguardServiceDelegate.java55 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
71 // Assume keyguard is showing and secure until we know for sure. This is here in
74 showing = true;
139 mKeyguardState.showing = false;
208 mKeyguardState.showing = mKeyguardService.isShowing();
210 return mKeyguardState.showing;
384 pw.println(prefix + "showing=" + mKeyguardState.showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowManager.java261 public void setKeyguardShowing(boolean showing) { argument
262 mCurrentState.keyguardShowing = showing;
287 public void setBouncerShowing(boolean showing) { argument
288 mCurrentState.bouncerShowing = showing;
292 public void setBackdropShowing(boolean showing) { argument
293 mCurrentState.backdropShowing = showing;
312 public void setHeadsUpShowing(boolean showing) { argument
313 mCurrentState.headsUpShowing = showing;
H A DStatusBarKeyguardViewManager.java48 * Manages creating, showing, hiding and resetting the keyguard within the status bar. Calls back
58 // Delay for showing the navigation bar when the bouncer appears. This should be kept in sync
155 // The keyguard might be showing (already). So we need to hide it.
474 * @return Whether the keyguard is showing
503 // Keyguard is not going away, thus we are showing the navigation bar because the
518 boolean showing = mShowing;
524 if ((bouncerDismissible || !showing || remoteInputActive) !=
527 if (bouncerDismissible || !showing || remoteInputActive) {
560 if ((showing && !occluded) != (mLastShowing && !mLastOccluded) || mFirstUpdate) {
561 updateMonitor.onKeyguardVisibilityChanged(showing
[all...]
H A DPanelBar.java67 public void setBouncerShowing(boolean showing) { argument
68 int important = showing ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
H A DScrimController.java118 public void setKeyguardShowing(boolean showing) { argument
119 mKeyguardShowing = showing;
152 public void setBouncerShowing(boolean showing) { argument
153 mBouncerShowing = showing;
H A DKeyguardStatusBarView.java242 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
243 mKeyguardUserSwitcherShowing = showing;
/frameworks/base/services/core/java/com/android/server/am/
H A DKeyguardController.java79 * @return true if Keyguard is showing, not going away, and not being occluded, false otherwise
86 * @return true if Keyguard is either showing or occluded, but not going away
93 * Update the Keyguard showing state.
95 void setKeyguardShown(boolean showing) { argument
96 if (showing == mKeyguardShowing) {
99 mKeyguardShowing = showing;
101 if (showing) {
196 * @return True if we may show an activity while Keyguard is showing because we are in the
320 // The lock screen is currently showing, but is occluded by a window that can
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java192 final boolean showing = mBatteryPercentView != null;
195 if (!showing) {
206 if (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/keyguard/
H A DKeyguardViewMediator.java101 * it of when the keyguard is showing, and events from the keyguard view itself
109 * - is the keyguard showing?
113 * - the keyguard is showing
125 * 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
338 * Controller for showing individual "work challenge" lock screen windows inside managed profile
355 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
390 + "keyguard is showing");
405 // If system user is provisioned, we might want to lock now to avoid showing launcher
441 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
1693 updateActivityLockScreenState(boolean showing) argument
2059 setShowingLocked(boolean showing) argument
2063 setShowingLocked(boolean showing, boolean forceCallbacks) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java71 /** Minimum number of pages to justify showing a fast scroll thumb. */
74 /** Scroll thumb and preview not showing. */
154 /** Whether the primary text is showing. */
184 * <li>{@link #STATE_VISIBLE}, showing track and thumb
185 * <li>{@link #STATE_DRAGGING}, visible and showing preview
1125 final TextView showing;
1128 showing = mPrimaryText;
1131 showing = mSecondaryText;
1146 final Animator hideShowing = animateAlpha(showing, 0f).setDuration(DURATION_CROSS_FADE);
1161 // The current preview size is unaffected by hidden or showing
[all...]
H A DListPopupWindow.java590 boolean showing = isShowing();
591 if (showing) {
595 if (showing) {
608 * Show the popup list. If the list is already showing, this method
744 * <p>If the popup is showing, calling this method will take effect only
796 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
805 * to interact with the IME while it is showing, {@code false} otherwise.
816 * (e.g. if the popup was not showing, this method would return false.)
832 * @return The currently selected item or null if the popup is not showing.
966 // the list view is actually showing it
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java192 * Sets the indication that is shown if nothing else is showing.
401 public void onKeyguardVisibilityChanged(boolean showing) { argument
402 if (showing) {
H A DExpandableNotificationRow.java121 /** Are we showing the "public" version */
1021 * @return whether the notification is currently showing a view with an icon.
1295 // Don't translate if guts are showing.
1388 // Only fade the showing view of the pulsing notification.
1391 final NotificationContentView showing = getShowingLayout();
1392 if (showing != null) {
1393 showing.setDark(dark, fade, delay);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java229 public void setShowingForActionMode(boolean showing) { argument
230 if (showing) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java623 boolean showing = isShowing();
624 if (showing) {
628 if (showing) {
641 * Show the popup list. If the list is already showing, this method
782 * <p>If the popup is showing, calling this method will take effect only
835 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
844 * to interact with the IME while it is showing, {@code false} otherwise.
855 * (e.g. if the popup was not showing, this method would return false.)
871 * @return The currently selected item or null if the popup is not showing.
1005 // the list view is actually showing it
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java183 * showing the user the text that is being typed. Unlike the other UI elements,
487 boolean showing = isInputViewShown();
489 IME_ACTIVE | (showing ? IME_VISIBLE : 0), mBackDisposition);
621 * as hiding or showing candidates) without disrupting the underlying
940 // If we were last showing the soft keyboard, try to do so again.
959 boolean showing = onEvaluateInputViewShown();
961 IME_ACTIVE | (showing ? IME_VISIBLE : 0), mBackDisposition);
1111 * @param isCandidatesOnly If true, the window is only showing the
1159 * when the input method is in fullscreen mode, and thus showing extracted
1343 * other situations -- if showing o
[all...]

Completed in 6815 milliseconds

12