Searched defs:visibility (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DZoomControls.java90 private void fade(int visibility, float startAlpha, float endAlpha) { argument
94 setVisibility(visibility);
H A DViewFlipper.java109 protected void onWindowVisibilityChanged(int visibility) { argument
110 super.onWindowVisibilityChanged(visibility);
111 mVisible = visibility == VISIBLE;
H A DChronometer.java218 protected void onWindowVisibilityChanged(int visibility) { argument
219 super.onWindowVisibilityChanged(visibility);
220 mVisible = visibility == VISIBLE;
H A DProgressBar.java781 protected void onVisibilityChanged(View changedView, int visibility) { argument
782 super.onVisibilityChanged(changedView, visibility);
786 if (visibility == GONE || visibility == INVISIBLE) {
H A DRemoteViews.java618 * @param viewId The id of the view whose visibility should change
619 * @param visibility The new visibility for the view
621 public void setViewVisibility(int viewId, int visibility) { argument
622 setInt(viewId, "setVisibility", visibility);
/frameworks/base/core/tests/coretests/src/android/view/
H A DVisibilityCallback.java31 * Exercise View's ability to change their visibility: GONE, INVISIBLE and
44 // Find the view whose visibility will change
102 protected void onVisibilityChanged(View changedView, int visibility) { argument
104 mLastChangedVisibility = visibility;
107 Log.d("viewVis", "visibility: " + visibility);
/frameworks/base/core/java/android/view/
H A DViewStub.java193 * When visibility is set to {@link #VISIBLE} or {@link #INVISIBLE},
197 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
202 public void setVisibility(int visibility) { argument
206 view.setVisibility(visibility);
211 super.setVisibility(visibility);
212 if (visibility == VISIBLE || visibility == INVISIBLE) {
H A DSurfaceView.java202 protected void onWindowVisibilityChanged(int visibility) { argument
203 super.onWindowVisibilityChanged(visibility);
204 mWindowVisibility = visibility == VISIBLE;
210 public void setVisibility(int visibility) { argument
211 super.setVisibility(visibility);
212 mViewVisibility = visibility == VISIBLE;
H A DViewGroup.java701 protected void dispatchVisibilityChanged(View changedView, int visibility) { argument
702 super.dispatchVisibilityChanged(changedView, visibility);
706 children[i].dispatchVisibilityChanged(changedView, visibility);
714 public void dispatchWindowVisibilityChanged(int visibility) { argument
715 super.dispatchWindowVisibilityChanged(visibility);
719 children[i].dispatchWindowVisibilityChanged(visibility);
745 void dispatchCollectViewAttributes(int visibility) { argument
746 visibility |= mViewFlags&VISIBILITY_MASK;
747 super.dispatchCollectViewAttributes(visibility);
751 children[i].dispatchCollectViewAttributes(visibility);
1115 dispatchAttachedToWindow(AttachInfo info, int visibility) argument
[all...]
H A DView.java130 * <li><strong>Set visibility:</strong> You can hide or show views using
246 * <td>Called when the visibility of the window containing the view
645 * Mask for use with setFlags indicating bits used for visibility.
1957 final int visibility = a.getInt(attr, 0);
1958 if (visibility != 0) {
1959 viewFlagValues |= VISIBILITY_FLAGS[visibility];
2963 * Returns the visibility of this view and all of its ancestors
3008 * Returns the visibility status for this view.
3025 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
3029 public void setVisibility(int visibility) { argument
3836 dispatchVisibilityChanged(View changedView, int visibility) argument
3847 onVisibilityChanged(View changedView, int visibility) argument
3890 dispatchWindowVisibilityChanged(int visibility) argument
3904 onWindowVisibilityChanged(int visibility) argument
3987 dispatchCollectViewAttributes(int visibility) argument
3991 performCollectViewAttributes(int visibility) argument
6003 dispatchAttachedToWindow(AttachInfo info, int visibility) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java565 public void setVisibility(int visibility) { argument
567 if (visibility != getVisibility() && visibility == View.INVISIBLE) {
570 super.setVisibility(visibility);
/frameworks/base/core/java/android/webkit/
H A DWebView.java335 private void fade(int visibility, float startAlpha, float endAlpha) { argument
339 setVisibility(visibility);

Completed in 193 milliseconds