Searched refs:visible (Results 51 - 75 of 107) sorted by relevance

12345

/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java244 public void setGroupVisible(int group, boolean visible) { argument
251 item.setVisible(visible);
H A DMenuBuilder.java75 * Whether the shortcuts should be visible on menus. Use isShortcutsVisible()
89 /** Contains only the items that are currently visible. This will be created/refreshed from
562 public void setGroupVisible(int group, boolean visible) { argument
572 if (item.setVisibleInt(visible)) changedAtLeastOneItem = true;
704 * Sets whether the shortcuts should be visible on menus. Devices without hardware
705 * key input will never make shortcuts visible even if this method is passed 'true'.
707 * @param shortcutsVisible Whether shortcuts should be visible (if true and a
726 * @return Whether shortcuts should be visible on menus.
914 * Closes the visible menu.
984 * Called by {@link MenuItemImpl} when its visible fla
1228 setOptionalIconsVisible(boolean visible) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsActivity.java107 private void updateWallpaperVisibility(boolean visible) { argument
108 int wpflags = visible ? WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER : 0;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarTransitions.java118 public void setContentVisible(boolean visible) { argument
119 final float alpha = visible ? 1 : 0;
H A DQuickSettings.java158 public void setImeWindowStatus(boolean visible) { argument
159 mModel.onImeWindowStatusChanged(visible);
492 view.setVisibility(rotationLockState.visible
911 private void setVisibility(View view, boolean visible) { argument
912 final float newAlpha = visible ? 1 : 0;
915 .setDuration(visible ? mShortDuration : mDefaultDuration)
H A DBarTransitions.java107 public void setContentVisible(boolean visible) { argument
H A DQuickSettingsModel.java99 boolean visible = false; field in class:QuickSettingsModel.RotationLockState
763 void onImeWindowStatusChanged(boolean visible) { argument
768 mImeState.enabled = (visible && needsToShowImeSwitchOngoingNotification(imm));
809 mRotationLockState.visible = affordanceVisible;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java256 public void onVisibilityChanged(boolean visible) { argument
258 Log.d(TAG, "onVisibilityChanged: mVisible, visible=" + mVisible + ", " + visible);
261 if (mVisible != visible) {
263 Log.d(TAG, "Visibility changed to visible=" + visible);
265 mVisible = visible;
/frameworks/base/services/input/
H A DSpriteController.cpp241 // Set sprite surface properties and make them visible.
426 void SpriteController::SpriteImpl::setVisible(bool visible) { argument
429 if (mLocked.state.visible != visible) {
430 mLocked.state.visible = visible;
H A DInputWindow.h129 bool visible; member in struct:android::InputWindowInfo
/frameworks/base/services/java/com/android/server/
H A DStatusBarManagerService.java217 public void setIconVisibility(String slot, boolean visible) { argument
231 if (icon.visible != visible) {
232 icon.visible = visible;
459 * invisible to visible in order to clear the notification light.
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java89 * Though usually not visible to the application, Drawables may take a variety
558 * Set whether this Drawable is visible. This generally does not impact
562 * @param visible Set to true if visible, false if not.
564 * as if it has just become visible, even if it had last
565 * been set visible. Used for example to force animations
571 public boolean setVisible(boolean visible, boolean restart) { argument
572 boolean changed = mVisible != visible;
574 mVisible = visible;
H A DDrawableContainer.java305 public boolean setVisible(boolean visible, boolean restart) { argument
306 boolean changed = super.setVisible(visible, restart);
308 mLastDrawable.setVisible(visible, restart);
311 mCurrDrawable.setVisible(visible, restart);
H A DLayerDrawable.java382 public boolean setVisible(boolean visible, boolean restart) { argument
383 boolean changed = super.setVisible(visible, restart);
387 array[i].mDrawable.setVisible(visible, restart);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivityDelegateBase.java475 void setSupportProgressBarVisibility(boolean visible) { argument
476 updateProgressBars(visible ? Window.PROGRESS_VISIBILITY_ON :
481 void setSupportProgressBarIndeterminateVisibility(boolean visible) { argument
482 updateProgressBars(visible ? Window.PROGRESS_VISIBILITY_ON :
532 // so that when the progress bar becomes visible again, it has the
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java1468 * Set sign in error notification to visible or in visible
1470 * @param visible
1475 public void setProvisioningNotificationVisible(boolean visible, int networkType, argument
1478 mService.setProvisioningNotificationVisible(visible, networkType, extraInfo, url);
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl100 void setAppVisibility(IBinder token, boolean visible);
H A DVolumePanel.java119 /** The visible portion of the volume overlay */
541 public void postRemoteSliderVisibility(boolean visible) { argument
543 AudioService.STREAM_REMOTE_MUSIC, visible ? 1 : 0).sendToTarget();
841 * @param visible
843 synchronized protected void onSliderVisibilityChanged(int streamType, int visible) { argument
844 if (LOGD) Log.d(TAG, "onSliderVisibilityChanged(stream="+streamType+", visi="+visible+")");
845 boolean isVisible = (visible == 1);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java527 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
551 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
724 boolean visible) {
723 visitParameterAnnotation(int parameter, String desc, boolean visible) argument
H A DDependencyFinder.java418 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
442 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
620 boolean visible) {
619 visitParameterAnnotation(int parameter, String desc, boolean visible) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java467 boolean visible = false;
469 visible = mSearchPanelView.isShowing();
485 if (visible) {
771 protected void visibilityChanged(boolean visible) { argument
772 if (mPanelSlightlyVisible != visible) {
773 mPanelSlightlyVisible = visible;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuBuilder.java67 * Whether the shortcuts should be visible on menus. Use isShortcutsVisible() instead of
84 * Contains only the items that are currently visible. This will be created/refreshed from
589 public void setGroupVisible(int group, boolean visible) { argument
599 if (item.setVisibleInt(visible)) {
740 * Sets whether the shortcuts should be visible on menus. Devices without hardware key input
741 * will never make shortcuts visible even if this method is passed 'true'.
743 * @param shortcutsVisible Whether shortcuts should be visible (if true and a menu item does not
762 * @return Whether shortcuts should be visible on menus.
956 * Closes the visible menu.
1027 * Called by {@link MenuItemImpl} when its visible fla
1275 setOptionalIconsVisible(boolean visible) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNetworkController.java159 void setWifiIndicators(boolean visible, int strengthIcon, argument
161 void setMobileDataIndicators(boolean visible, int strengthIcon, argument
715 boolean visible = true;
739 visible = false;
743 visible = false; // no SIM? no data
765 visible = false;
770 mDataConnected = visible;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java517 // If non-null, this is the currently visible window that is associated
1264 // visible one in layering.
1746 boolean visible = foundW != null;
1747 if (visible) {
1748 // The window is visible to the compositor... but is it visible
1750 visible = isWallpaperVisible(foundW);
1751 if (DEBUG_WALLPAPER) Slog.v(TAG, "Wallpaper visibility: " + visible);
1798 if (visible) {
1816 if (token.hidden == visible) {
2068 dispatchWallpaperVisibility(final WindowState wallpaper, final boolean visible) argument
4178 setTokenVisibilityLocked(AppWindowToken wtoken, WindowManager.LayoutParams lp, boolean visible, int transit, boolean performLayout) argument
4294 setAppVisibility(IBinder token, boolean visible) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java672 // Make sure any stopped but visible activities are now sleeping.
986 * Determine if home should be visible below the passed record.
988 * @return true if home is visible below the passed activity, false otherwise.
991 // Start at record and go down, look for either home or a visible fullscreen activity.
1009 // Got to the bottom of a task on top of home without finding a visible fullscreen
1010 // activity. Home is visible.
1034 * Make sure that all activities that need to be visible (that is, they
1054 // make sure any activities under it are now visible.
1073 TAG, "Make visible? " + r + " finishing=" + r.finishing
1087 // This activity needs to be visible, bu
[all...]

Completed in 773 milliseconds

12345