Searched refs:visible (Results 76 - 100 of 156) sorted by relevance

1234567

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListViewCompat.java240 * to have at least 3 completely visible children, and
370 public boolean setVisible(boolean visible, boolean restart) { argument
372 return super.setVisible(visible, restart);
/frameworks/base/libs/input/
H A DSpriteController.cpp240 // 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;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java257 public void onVisibilityChanged(boolean visible) { argument
259 Log.d(TAG, "onVisibilityChanged: mVisible, visible=" + mVisible + ", " + visible);
262 if (mVisible != visible) {
264 Log.d(TAG, "Visibility changed to visible=" + visible);
266 mVisible = visible;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSPanel.java253 int visibility = state.visible ? VISIBLE : GONE;
254 if (state.visible && !mGridContentVisible) {
257 // then we just set it to invisible, to ensure that it gets visible again
369 private void setGridContentVisibility(boolean visible) { argument
370 int newVis = visible ? VISIBLE : INVISIBLE;
378 mGridContentVisible = visible;
/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerService.java250 public void setIconVisibility(String slot, boolean visible) { argument
264 if (icon.visible != visible) {
265 icon.visible = visible;
487 * invisible to visible in order to clear the notification light.
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java37 * children in a vertical column, with different regions becoming visible at
44 * region is always visible, while the info and extra regions can be set to
66 * A Card type with 2 layout areas: A main area which is always visible, and
67 * an info area that fades in over the main area when it is visible.
75 * A Card type with 2 layout areas: A main area which is always visible, and
76 * an info area that appears below the main area. When the info area is visible
84 * A Card type with 3 layout areas: A main area which is always visible; an
96 * Indicates that a card region is always visible.
101 * Indicates that a card region is visible when the card is activated.
106 * Indicates that a card region is visible whe
580 setInfoViewVisibility(boolean visible) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumePanel.java155 /** The visible portion of the volume overlay */
814 private void setZenPanelVisible(boolean visible) { argument
815 if (LOGD) Log.d(mTag, "setZenPanelVisible " + visible + " mZenPanel=" + mZenPanel);
816 final boolean changing = visible != isZenPanelVisible();
817 if (visible) {
863 public void postRemoteSliderVisibility(boolean visible) { argument
865 STREAM_REMOTE_MUSIC, visible ? 1 : 0).sendToTarget();
1202 * @param visible
1204 synchronized protected void onSliderVisibilityChanged(int streamType, int visible) { argument
1205 if (LOGD) Log.d(mTag, "onSliderVisibilityChanged(stream="+streamType+", visi="+visible
1451 onVisible(boolean visible) argument
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java230 public boolean setVisible(boolean visible, boolean restart) { argument
231 mAnimatedVectorState.mVectorDrawable.setVisible(visible, restart);
232 return super.setVisible(visible, restart);
H A DInsetDrawable.java269 public boolean setVisible(boolean visible, boolean restart) { argument
270 mInsetState.mDrawable.setVisible(visible, restart);
271 return super.setVisible(visible, restart);
H A DRotateDrawable.java344 public boolean setVisible(boolean visible, boolean restart) { argument
345 mState.mDrawable.setVisible(visible, restart);
346 return super.setVisible(visible, restart);
H A DAnimatedStateListDrawable.java87 public boolean setVisible(boolean visible, boolean restart) { argument
88 final boolean changed = super.setVisible(visible, restart);
91 if (visible) {
94 // Ensure we're showing the correct state when visible.
H A DDrawable.java96 * Though usually not visible to the application, Drawables may take a variety
665 * Set whether this Drawable is visible. This generally does not impact
669 * @param visible Set to true if visible, false if not.
671 * as if it has just become visible, even if it had last
672 * been set visible. Used for example to force animations
678 public boolean setVisible(boolean visible, boolean restart) { argument
679 boolean changed = mVisible != visible;
681 mVisible = visible;
H A DRippleDrawable.java126 /** Whether we expect to draw a background when visible. */
132 /** Whether we expect to draw a ripple when visible. */
323 public boolean setVisible(boolean visible, boolean restart) { argument
324 final boolean changed = super.setVisible(visible, restart);
326 if (!visible) {
329 // If we just became visible, ensure the background and ripple
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DIntentTile.java96 state.visible = intent.getBooleanExtra("visible", true);
/frameworks/native/services/inputflinger/
H A DInputWindow.h131 bool visible; member in struct:android::InputWindowInfo
/frameworks/base/core/java/android/app/
H A DActivityView.java332 public void setVisible(IBinder container, boolean visible) { argument
333 if (DEBUG) Log.v(TAG, "setVisible(): container=" + container + " visible=" + visible +
H A DActivity.java182 * <li>If an activity has lost focus but is still visible (that is, a new non-full-sized
190 * however, it is no longer visible to the user so its window is hidden
219 * <li>The <b>visible lifetime</b> of an activity happens between a call to
228 * can be called multiple times, as the activity becomes visible and hidden
304 * <td>Called when the activity is becoming visible to the user.
336 * <td>Called when the activity is no longer visible to the user, because
409 * had been in the foreground or visible to the user, once {@link #onDestroy} is
628 * <li> <p>A <b>visible activity</b> (an activity that is visible to the user
632 * <li> <p>A <b>background activity</b> (an activity that is not visible t
4512 setVisible(boolean visible) argument
5106 setProgressBarVisibility(boolean visible) argument
5119 setProgressBarIndeterminateVisibility(boolean visible) argument
5510 requestVisibleBehind(boolean visible) argument
5577 onBackgroundVisibleBehindChanged(boolean visible) argument
[all...]
/frameworks/base/core/java/android/net/
H A DIConnectivityManager.aidl142 void setProvisioningNotificationVisible(boolean visible, int networkType, in String action);
/frameworks/base/media/java/android/media/
H A DIAudioService.aidl198 void notifyVolumeControllerVisible(in IVolumeController controller, boolean visible);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationUsageStats.java292 /** Number of times the notification has been made visible. */
297 * If currently visible, SystemClock.elapsedRealtime() when the notification was made
298 * visible; -1 otherwise.
301 /** Accumulated visible time. */
305 * became visible and expanded; -1 if it was never visibly expanded.
309 * If currently visible, SystemClock.elapsedRealtime() when the notification was made
310 * visible; -1 otherwise.
313 /** Accumulated visible expanded time. */
370 public void onVisibilityChanged(boolean visible) { argument
373 isVisible = visible;
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java540 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
564 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
746 boolean visible) {
745 visitParameterAnnotation(int parameter, String desc, boolean visible) argument
H A DDependencyFinder.java416 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
440 public AnnotationVisitor visitAnnotation(String desc, boolean visible) { argument
619 boolean visible) {
618 visitParameterAnnotation(int parameter, String desc, boolean visible) argument
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl104 void setAppVisibility(IBinder token, boolean visible);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java2060 private void updateSpeedBump(boolean visible) { argument
2062 if (visible != notGoneBefore) {
2063 int newVisibility = visible ? VISIBLE : GONE;
2065 if (visible) {
2131 public void updateEmptyShadeView(boolean visible) { argument
2133 int newVisibility = visible ? VISIBLE : GONE;
2160 public void updateDismissView(boolean visible) { argument
2162 int newVisibility = visible ? VISIBLE : GONE;
/frameworks/base/core/java/com/android/internal/view/menu/
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
582 public void setGroupVisible(int group, boolean visible) { argument
592 if (item.setVisibleInt(visible)) changedAtLeastOneItem = true;
724 * Sets whether the shortcuts should be visible on menus. Devices without hardware
725 * key input will never make shortcuts visible even if this method is passed 'true'.
727 * @param shortcutsVisible Whether shortcuts should be visible (if true and a
746 * @return Whether shortcuts should be visible on menus.
934 * Closes the visible menu.
1004 * Called by {@link MenuItemImpl} when its visible fla
1248 setOptionalIconsVisible(boolean visible) argument
[all...]

Completed in 547 milliseconds

1234567