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

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardUpdateMonitorCallback.java67 * @param showing Indicates if the keyguard is now visible.
69 void onKeyguardVisibilityChanged(boolean showing) { } argument
H A DKeyguardFaceUnlockView.java207 * should not be started, it either goes to the back up, or remains showing to prepare for
225 // Don't start it if the screen is off or if it's not showing, but keep this view up
227 // showing.
282 public void onKeyguardVisibilityChanged(boolean showing) {
283 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged(" + showing + ")");
287 mIsShowing = showing;
292 if (!showing && wasShowing) {
294 } else if (showing && powerManager.isScreenOn() && !wasShowing) {
H A DKeyguardStatusView.java62 void onKeyguardVisibilityChanged(boolean showing) {
63 if (showing) {
64 if (DEBUG) Slog.v(TAG, "refresh statusview showing:" + showing);
H A DCameraWidgetFrame.java113 void onKeyguardVisibilityChanged(boolean showing) {
114 if (mShowing == showing)
116 mShowing = showing;
413 public void onBouncerShowing(boolean showing) { argument
414 if (showing) {
435 private void onKeyguardVisibilityChanged(boolean showing) { argument
436 if (DEBUG) Log.d(TAG, "onKeyguardVisibilityChanged " + showing
438 if (mTransitioning && !showing) {
H A DKeyguardUpdateMonitor.java202 * This currently implements the bare minimum required to enable showing and hiding
204 * KeyguardTransportControl maintains an independent connection while it's showing.
750 private void handleKeyguardVisibilityChanged(int showing) { argument
751 if (DEBUG) Log.d(TAG, "handleKeyguardVisibilityChanged(" + showing + ")");
752 boolean isShowing = (showing == 1);
878 public void sendKeyguardVisibilityChanged(boolean showing) { argument
879 if (DEBUG) Log.d(TAG, "sendKeyguardVisibilityChanged(" + showing + ")");
881 message.arg1 = showing ? 1 : 0;
H A DKeyguardHostView.java981 // we're showing account as a backup, provide a way to get back to primary
1404 // If the transport is showing, force it to show it on restore.
1405 final boolean showing = mTransportControl != null
1407 ss.transportState = showing ? TRANSPORT_VISIBLE : mTransportState;
1460 * {@link #TRANSPORT_VISIBLE} means a music player is active and transport should be showing.
1462 * Once the transport is showing, we always show it until keyguard is dismissed. This state is
1470 final boolean showing = getWidgetPosition(R.id.keyguard_transport_control) != -1;
1473 if (!showing && (visible || shouldBeVisible)) {
1483 } else if (showing && state == TRANSPORT_GONE) {
H A DKeyguardWidgetFrame.java517 public void onBouncerShowing(boolean showing) { argument
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java91 public void setShowingForActionMode(boolean showing) { argument
92 if (showing) {
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java510 boolean showing = isShowing();
511 if (showing) {
515 if (showing) {
528 * Show the popup list. If the list is already showing, this method
651 * <p>If the popup is showing, calling this method will take effect only
703 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
711 * to interact with the IME while it is showing, {@code false} otherwise.
722 * (e.g. if the popup was not showing, this method would return false.)
738 * @return The currently selected item or null if the popup is not showing.
867 // the list view is actually showing it
[all...]
H A DAbsListView.java4784 // to account for showing that top index as well
4788 // to account for showing that bottom index as well
5431 // Make sure we have a window before showing the popup
5435 // Make sure we get focus if we are showing the popup
5734 * showing the popup displaying the currently entered filter text.
5739 boolean showing = mPopup.isShowing();
5740 if (!showing && length > 0) {
5744 } else if (showing && length == 0) {
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java168 * showing the user the text that is being typed. Unlike the other UI elements,
434 boolean showing = onEvaluateInputViewShown();
435 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
557 * as hiding or showing candidates) without disrupting the underlying
764 // If we were last showing the soft keyboard, try to do so again.
783 boolean showing = onEvaluateInputViewShown();
784 mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
934 * @param isCandidatesOnly If true, the window is only showing the
980 * when the input method is in fullscreen mode, and thus showing extracted
1153 * other situations -- if showing o
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListPopupWindow.java492 boolean showing = isShowing();
493 if (showing) {
497 if (showing) {
510 * Show the popup list. If the list is already showing, this method will recalculate the popup's
631 * <p>If the popup is showing, calling this method will take effect only the next time the popup
680 * @return {@code true} if the popup is currently showing, {@code false} otherwise.
688 * with the IME while it is showing, {@code false} otherwise.
699 * showing, this method would return false.)
715 * @return The currently selected item or null if the popup is not showing.
842 // the list view is actually showing it
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationPanel.java105 // the "X" that appears in place of the clock when the panel is showing notifications
168 * Whether the panel is showing, or, if it's animating, whether it will be
251 public void setContentFrameVisible(final boolean showing, boolean animate) { argument
/frameworks/support/v4/java/android/support/v4/widget/
H A DDrawerLayout.java823 final int showing = getWidth() - childLeft;
826 Math.max(0, Math.min((float) showing / drawerPeekDistance, 1.f));

Completed in 241 milliseconds