Searched refs:visibility (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewStub.java189 * When visibility is set to {@link #VISIBLE} or {@link #INVISIBLE},
193 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
198 public void setVisibility(int visibility) { argument
199 super.setVisibility(visibility);
201 if (visibility == VISIBLE || visibility == INVISIBLE) {
H A DSurfaceView.java179 protected void onWindowVisibilityChanged(int visibility) { argument
180 super.onWindowVisibilityChanged(visibility);
181 mRequestedVisible = visibility == VISIBLE;
H A DLayoutInflater.java547 * default visibility so the BridgeInflater can override it.
708 // While we're at it, let's try to override android:visibility.
709 int visibility = a.getInt(com.android.internal.R.styleable.View_visibility, -1);
716 switch (visibility) {
H A DViewGroup.java685 public void dispatchWindowVisibilityChanged(int visibility) { argument
686 super.dispatchWindowVisibilityChanged(visibility);
690 children[i].dispatchWindowVisibilityChanged(visibility);
703 void dispatchCollectViewAttributes(int visibility) { argument
704 visibility |= mViewFlags&VISIBILITY_MASK;
705 super.dispatchCollectViewAttributes(visibility);
709 children[i].dispatchCollectViewAttributes(visibility);
1031 void dispatchAttachedToWindow(AttachInfo info, int visibility) { argument
1032 super.dispatchAttachedToWindow(info, visibility);
1033 visibility |
[all...]
H A DView.java128 * <li><strong>Set visibility:</strong> You can hide or show views using
244 * <td>Called when the visibility of the window containing the view
640 * Mask for use with setFlags indicating bits used for visibility.
1918 final int visibility = a.getInt(attr, 0);
1919 if (visibility != 0) {
1920 viewFlagValues |= VISIBILITY_FLAGS[visibility];
2897 * Returns the visibility of this view and all of its ancestors
2942 * Returns the visibility status for this view.
2959 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
2963 public void setVisibility(int visibility) { argument
3744 dispatchWindowVisibilityChanged(int visibility) argument
3758 onWindowVisibilityChanged(int visibility) argument
3812 dispatchCollectViewAttributes(int visibility) argument
3816 performCollectViewAttributes(int visibility) argument
5554 dispatchAttachedToWindow(AttachInfo info, int visibility) argument
[all...]
/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 DChronometer.java218 protected void onWindowVisibilityChanged(int visibility) { argument
219 super.onWindowVisibilityChanged(visibility);
220 mVisible = visibility == VISIBLE;
H A DProgressBar.java684 int visibility = getVisibility();
685 if (visibility != VISIBLE) {
H A DRemoteViews.java522 * @param viewId The id of the view whose visibility should change
523 * @param visibility The new visibility for the view
525 public void setViewVisibility(int viewId, int visibility) { argument
526 setInt(viewId, "setVisibility", visibility);
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dconfig.h65 #define DLL_EXPORT __attribute__((visibility("default")))
66 #define DLL_LOCAL __attribute__((visibility("hidden")))
/frameworks/base/opengl/include/KHR/
H A Dkhrplatform.h95 # define KHRONOS_APICALL __attribute__((visibility("default")))
/frameworks/base/tests/FrameworkTest/src/com/android/frameworktest/view/
H A DVisibility.java27 * Exercise View's ability to change their visibility: GONE, INVISIBLE and
34 setContentView(R.layout.visibility);
36 // Find the view whose visibility will change
/frameworks/base/core/java/android/app/
H A DSearchDialog.java627 int visibility = View.GONE;
634 visibility = View.VISIBLE;
638 visibility = View.VISIBLE;
644 mBadgeLabel.setVisibility(visibility);
664 * Update the visibility of the voice button. There are actually two voice search modes,
668 int visibility = View.GONE;
680 visibility = View.VISIBLE;
684 mVoiceButton.setVisibility(visibility);
/frameworks/policies/base/mid/com/android/internal/policy/impl/
H A DMidWindow.java1005 int visibility = (horizontalProgressBar.isIndeterminate() || level < 10000) ?
1007 horizontalProgressBar.setVisibility(visibility);
1024 // We want to set the progress value before testing for visibility
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DPhoneWindow.java1119 int visibility = (horizontalProgressBar.isIndeterminate() || level < 10000) ?
1121 horizontalProgressBar.setVisibility(visibility);
1138 // We want to set the progress value before testing for visibility
/frameworks/base/core/java/android/webkit/
H A DWebView.java136 private void fade(int visibility, float startAlpha, float endAlpha) { argument
140 setVisibility(visibility);

Completed in 2021 milliseconds