Searched refs:visible (Results 101 - 125 of 156) sorted by relevance

1234567

/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java385 public boolean setVisible(boolean visible, boolean restart) { argument
386 boolean changed = super.setVisible(visible, restart);
388 mLastDrawable.setVisible(visible, restart);
391 mCurrDrawable.setVisible(visible, restart);
H A DLayerDrawable.java650 public boolean setVisible(boolean visible, boolean restart) { argument
651 final boolean changed = super.setVisible(visible, restart);
655 array[i].mDrawable.setVisible(visible, restart);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DCastTile.java93 state.visible = !(mKeyguard.isSecure() && mKeyguard.isShowing());
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStack.java730 // Make sure any stopped but visible activities are now sleeping.
1000 // If we were visible then resumeTopActivities will release resources before
1115 private void setVisibile(ActivityRecord r, boolean visible) { argument
1116 r.visible = visible;
1117 mWindowManager.setAppVisibility(r.appToken, visible);
1121 container.setVisible(visible);
1125 // Find the first visible activity above the passed activity and if it is translucent return it
1171 // If so, this stack is hidden, otherwise it is visible.
1182 * Start at the task above this one and go up, looking for a visible
[all...]
H A DActivityStackSupervisor.java195 /** List of activities that are waiting for a new activity to become visible before completing
199 /** List of processes waiting to find out about the next visible activity. */
382 // TODO: Split into two methods isFrontStack for any visible stack and isFrontmostStack for the
383 // top of all visible stacks.
1214 // should look like we asked it to pause+stop (but remain visible),
2803 boolean requestVisibleBehindLocked(ActivityRecord r, boolean visible) { argument
2806 if (DEBUG_VISIBLE_BEHIND) Slog.d(TAG, "requestVisibleBehind: r=" + r + " visible=" +
2807 visible + " stack is null");
2811 if (DEBUG_VISIBLE_BEHIND) Slog.d(TAG, "requestVisibleBehind r=" + r + " visible=" +
2812 visible
3804 setVisible(boolean visible) argument
[all...]
H A DActivityRecord.java120 long lastVisibleTime; // last time this activity became visible
150 boolean visible; // does this activity's window need to be shown? field in class:ActivityRecord
153 boolean nowVisible; // is this activity's window visible?
271 pw.print(" visible="); pw.print(visible);
404 visible = true;
586 // A finishing activity should not remain as visible in the background
954 // become visible.
962 "Was waiting for visible: " + r);
1019 * This method will return true if the activity is either visible, i
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java974 * scrolled offscreen in pixels. The valid range is 0 (fully visible) to the action bar's
987 * scrolled offscreen in pixels. The valid range is 0 (fully visible) to the action bar's
1039 public void dispatchMenuVisibilityChanged(boolean visible) { argument
1101 * @param isVisible True if an action bar menu is now visible, false if no action bar
1102 * menus are visible.
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuBuilder.java82 * Whether the shortcuts should be visible on menus. Use isShortcutsVisible() instead of
99 * Contains only the items that are currently visible. This will be created/refreshed from
617 public void setGroupVisible(int group, boolean visible) { argument
627 if (item.setVisibleInt(visible)) changedAtLeastOneItem = true;
765 * Sets whether the shortcuts should be visible on menus. Devices without hardware key input
766 * will never make shortcuts visible even if this method is passed 'true'.
768 * @param shortcutsVisible Whether shortcuts should be visible (if true and a menu item does not
787 * @return Whether shortcuts should be visible on menus.
979 * Closes the visible menu.
1049 * Called by {@link MenuItemImpl} when its visible fla
1296 setOptionalIconsVisible(boolean visible) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkControllerImpl.java165 void setWifiIndicators(boolean visible, int strengthIcon, String contentDescription); argument
166 void setMobileDataIndicators(boolean visible, int strengthIcon, int typeIcon, argument
835 boolean visible = true;
860 visible = false;
865 visible = false; // no SIM? no data
887 visible = false;
892 mDataConnected = visible;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java874 Log.e(TAG, "Trying to show notification guts, but already visible");
991 boolean visible = false;
993 visible = mSearchPanelView.isShowing();
1011 if (visible) {
1098 public void onVisibilityChanged(boolean visible) { argument
1563 protected void visibilityChanged(boolean visible) { argument
1564 if (mPanelSlightlyVisible != visible) {
1565 mPanelSlightlyVisible = visible;
1566 if (!visible) {
1570 if (visible) {
[all...]
H A DCommandQueue.java86 public void topAppWindowChanged(boolean visible); argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java575 // If non-null, this is the currently visible window that is associated
1360 // visible one in layering.
1853 boolean visible = foundW != null;
1854 if (visible) {
1855 // The window is visible to the compositor... but is it visible
1857 visible = isWallpaperVisible(foundW);
1858 if (DEBUG_WALLPAPER) Slog.v(TAG, "Wallpaper visibility: " + visible);
1905 if (visible) {
1929 if (token.hidden == visible) {
2202 dispatchWallpaperVisibility(final WindowState wallpaper, final boolean visible) argument
4384 setTokenVisibilityLocked(AppWindowToken wtoken, WindowManager.LayoutParams lp, boolean visible, int transit, boolean performLayout, boolean isVoiceInteraction) argument
4506 setAppVisibility(IBinder token, boolean visible) argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java320 public void setGestureVisible(boolean visible) { argument
321 mGestureVisible = visible;
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java436 * @return Whether the drop-down is visible as long as there is {@link #enoughToFilter()}
445 * Sets whether the drop-down should remain visible as long as there is there is
453 * @param dropDownAlwaysVisible Whether to keep the drop-down visible.
1062 * @param visible whether the ime should be in front. If false, the ime is pushed to
1066 public void ensureImeVisible(boolean visible) { argument
1067 mPopup.setInputMethodMode(visible
1106 * ignore outside touch even when the drop down is not set to always visible.
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DAlternateRecentsComponent.java583 public static void notifyVisibilityChanged(boolean visible) { argument
585 sRecentsComponentCallbacks.onVisibilityChanged(visible);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskView.java617 void animateFooterVisibility(boolean visible, int duration) { argument
624 mFooterView.animateFooterVisibility(visible, duration);
706 * if the view is not currently visible, or we are in touch state (where we still want to keep
H A DTaskStackViewLayoutAlgorithm.java178 // visible, even if p < 0.
197 transformOut.visible = true;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java366 private void setVisibleOrGone(View view, boolean visible) { argument
368 view.setVisibility(visible ? VISIBLE : GONE);
H A DPhoneStatusBar.java476 /** Keys of notifications currently visible to the user. */
512 // Tracks notifications currently visible in mNotificationStackScroller and
523 // A. Keep list of visible notifications.
524 // B. Keep list of previously hidden, now visible notifications.
525 // 2. Compute no-longer visible notifications by removing currently
526 // visible notifications from the set of previously visible
528 // 3. Report newly visible and no-longer visible notifications.
529 // 4. Keep currently visible notification
3260 visibilityChanged(boolean visible) argument
4012 onVisibilityChanged(boolean visible) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActionBar.java971 * scrolled offscreen in pixels. The valid range is 0 (fully visible) to the action bar's
984 * scrolled offscreen in pixels. The valid range is 0 (fully visible) to the action bar's
1036 public void dispatchMenuVisibilityChanged(boolean visible) { argument
1097 * @param isVisible True if an action bar menu is now visible, false if no action bar
1098 * menus are visible.
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java90 * If you want the search field to always be visible, then call
545 * relevant when the text field is not visible by default. Calling {@link #setIconified
661 * fully visible.
799 // Visibility of views that are visible when collapsed
882 private void setImeVisibility(final boolean visible) { argument
883 if (visible) {
1092 * criteria apply to make the voice button visible.
1798 void ensureImeVisible(AutoCompleteTextView view, boolean visible) { argument
1801 ensureImeVisible.invoke(view, visible);
/frameworks/testing/espresso/libs/
H A Djarjar-1.4.jarcom/tonicsystems/jarjar/help.txt com/tonicsystems/jarjar/ext_util/StandaloneJarProcessor.class StandaloneJarProcessor.java package com. ...
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java510 final boolean visible = mExpandedActionView == null &&
513 mTitleLayout.setVisibility(visible ? VISIBLE : GONE);
531 final boolean visible = mExpandedActionView == null &&
534 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.java114 * is visible at one time.
321 // if a cue is added that should be visible, need to refresh view
690 * @param visible true if subtitles should be drawn, false otherwise
692 public void setVisible(boolean visible); argument

Completed in 589 milliseconds

1234567