Searched refs:showing (Results 1 - 25 of 31) 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/systemui/statusbar/policy/
H A DKeyguardMonitor.java44 public void notifyKeyguardState(boolean showing, boolean secure) { argument
45 if (mShowing == showing && mSecure == secure) return;
46 mShowing = 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 DCameraWidgetFrame.java118 public void onKeyguardVisibilityChanged(boolean showing) {
119 if (mShowing == showing)
121 mShowing = showing;
469 public void onBouncerShowing(boolean showing) { argument
470 if (showing) {
491 private void onKeyguardVisibilityChanged(boolean showing) { argument
492 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged " + showing
494 if (mTransitioning && !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 DKeyguardFaceUnlockView.java204 * should not be started, it either goes to the back up, or remains showing to prepare for
220 // Don't start it if the bouncer is not showing, but keep this view up because we want
304 public void onKeyguardVisibilityChanged(boolean showing) {
305 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
H A DKeyguardHostView.java377 // Don't show camera or search in navbar when SIM or Account screen is showing
856 // If the transport is showing, force it to show it on restore.
857 final boolean showing = mTransportControl != null
859 ss.transportState = showing ? TRANSPORT_VISIBLE : mTransportState;
940 * {@link #TRANSPORT_VISIBLE} means a music player is active and transport should be showing.
942 * Once the transport is showing, we always show it until keyguard is dismissed. This state is
950 final boolean showing = getWidgetPosition(R.id.keyguard_transport_control) != -1;
953 if (!showing && (visible || shouldBeVisible)) {
964 } else if (showing && state == TRANSPORT_GONE) {
H A DKeyguardUpdateMonitor.java993 private void handleKeyguardVisibilityChanged(int showing) { argument
994 if (DEBUG) Log.d(TAG, "handleKeyguardVisibilityChanged(" + showing + ")");
995 boolean isShowing = (showing == 1);
1127 public void sendKeyguardVisibilityChanged(boolean showing) { argument
1128 if (DEBUG) Log.d(TAG, "sendKeyguardVisibilityChanged(" + showing + ")");
1130 message.arg1 = showing ? 1 : 0;
H A DKeyguardWidgetFrame.java507 public void onBouncerShowing(boolean showing) { argument
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardStateMonitor.java69 public void onShowingStateChanged(boolean showing) { argument
70 mIsShowing = showing;
H A DKeyguardServiceDelegate.java44 // Assume keyguard is showing and secure until we know for sure. This is here in
47 showing = true;
52 boolean showing; field in class:KeyguardServiceDelegate.KeyguardState
118 mKeyguardState.showing = false;
157 mKeyguardState.showing = mKeyguardService.isShowing();
159 return mKeyguardState.showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java124 public static void traceKeyguardBouncerChanged(boolean showing) { argument
126 log("bouncer " + showing);
141 public static void traceKeyguard(boolean showing) { argument
143 log("keyguard " + showing);
144 if (!showing) {
251 public void onKeyguardVisibilityChanged(boolean showing) {
252 traceKeyguard(showing);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarKeyguardViewManager.java38 * Manages creating, showing, hiding and resetting the keyguard within the status bar. Calls back
48 // Delay for showing the navigation bar when the bouncer appears. This should be kept in sync
111 // The keyguard might be showing (already). So we need to hide it.
314 * @return Whether the keyguard is showing
342 // Keyguard is not going away, thus we are showing the navigation bar because the
357 boolean showing = mShowing;
362 if ((bouncerDismissible || !showing) != (mLastBouncerDismissible || !mLastShowing)
364 if (bouncerDismissible || !showing) {
370 if ((!(showing && !occluded) || bouncerShowing)
373 if (!(showing
[all...]
H A DScrimController.java84 public void setKeyguardShowing(boolean showing) { argument
85 mKeyguardShowing = showing;
105 public void setBouncerShowing(boolean showing) { argument
106 mBouncerShowing = showing;
H A DStatusBarWindowManager.java178 public void setKeyguardShowing(boolean showing) { argument
179 mCurrentState.keyguardShowing = showing;
209 public void setBouncerShowing(boolean showing) { argument
210 mCurrentState.bouncerShowing = showing;
H A DKeyguardStatusBarView.java175 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) { argument
176 mKeyguardUserSwitcherShowing = showing;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java44 /** Are we showing the "public" version */
212 final NotificationContentView showing = getShowingLayout();
213 if (showing != null) {
214 showing.setDark(dark, fade, delay);
H A DActivatableNotificationView.java368 public void setShowingLegacyBackground(boolean showing) { argument
369 mShowingLegacyBackground = showing;
/frameworks/base/core/java/android/widget/
H A DFastScroller.java67 /** Minimum number of pages to justify showing a fast scroll thumb. */
70 /** Scroll thumb and preview not showing. */
142 /** Whether the primary text is showing. */
172 * <li>{@link #STATE_VISIBLE}, showing track and thumb
173 * <li>{@link #STATE_DRAGGING}, visible and showing preview
1075 final TextView showing;
1078 showing = mPrimaryText;
1081 showing = mSecondaryText;
1096 final Animator hideShowing = animateAlpha(showing, 0f).setDuration(DURATION_CROSS_FADE);
1111 // The current preview size is unaffected by hidden or showing
[all...]
H A DListPopupWindow.java546 boolean showing = isShowing();
547 if (showing) {
551 if (showing) {
564 * Show the popup list. If the list is already showing, this method
687 * <p>If the popup is showing, calling this method will take effect only
739 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
747 * to interact with the IME while it is showing, {@code false} otherwise.
758 * (e.g. if the popup was not showing, this method would return false.)
774 * @return The currently selected item or null if the popup is not showing.
902 // the list view is actually showing it
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java84 * it of when the keyguard is showing, and events from the keyguard view itself
92 * - is the keyguard showing?
96 * - the keyguard is showing
108 * whether the keyguard should be showing, external apps and services may request
227 // cached value of whether we are showing (need to know this to quickly
311 // ActivityManagerService) will not reconstruct the keyguard if it is already showing.
358 + "keyguard is showing");
401 if (DEBUG_SIM_STATES) Log.d(TAG, "ICC_ABSENT isn't showing,"
417 + "showing; need to show keyguard so user can enter sim pin");
428 + "keygaurd isn't showing
1526 setShowingLocked(boolean showing) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java229 public void setShowingForActionMode(boolean showing) { argument
230 if (showing) {
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java170 * showing the user the text that is being typed. Unlike the other UI elements,
435 boolean showing = isInputViewShown();
436 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
569 * as hiding or showing candidates) without disrupting the underlying
783 // If we were last showing the soft keyboard, try to do so again.
802 boolean showing = onEvaluateInputViewShown();
803 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
953 * @param isCandidatesOnly If true, the window is only showing the
999 * when the input method is in fullscreen mode, and thus showing extracted
1172 * other situations -- if showing o
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java562 boolean showing = isShowing();
563 if (showing) {
567 if (showing) {
580 * Show the popup list. If the list is already showing, this method
702 * <p>If the popup is showing, calling this method will take effect only
757 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
765 * to interact with the IME while it is showing, {@code false} otherwise.
776 * (e.g. if the popup was not showing, this method would return false.)
792 * @return The currently selected item or null if the popup is not showing.
920 // the list view is actually showing it
[all...]

Completed in 575 milliseconds

12