Lines Matching defs:visibility

174  * <li><strong>Set visibility:</strong> You can hide or show views using
290 * <td>Called when the visibility of the window containing the view
851 * Use with {@link #setVisibility} and <a href="#attr_android:visibility">{@code
852 * android:visibility}.
858 * Use with {@link #setVisibility} and <a href="#attr_android:visibility">{@code
859 * android:visibility}.
865 * purposes. Use with {@link #setVisibility} and <a href="#attr_android:visibility">{@code
866 * android:visibility}.
871 * Mask for use with setFlags indicating bits used for visibility.
3234 * This view's request for the visibility of the status bar.
4313 final int visibility = a.getInt(attr, 0);
4314 if (visibility != 0) {
4315 viewFlagValues |= VISIBILITY_FLAGS[visibility];
7594 * Returns the visibility of this view and all of its ancestors
7977 * Returns the visibility status for this view.
7995 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
7999 public void setVisibility(@Visibility int visibility) {
8000 setFlags(visibility, VISIBILITY_MASK);
9439 * Change the visibility of the View without triggering any other changes. This is
9440 * important for transitions, where visibility changes should not adjust focus or
9441 * trigger a new layout. This is only used when the visibility has already been changed
9443 * the original visibility value is always restored.
9445 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
9448 public void setTransitionVisibility(@Visibility int visibility) {
9449 mViewFlags = (mViewFlags & ~View.VISIBILITY_MASK) | visibility;
10215 * Dispatch a view visibility change down the view hierarchy.
10217 * @param changedView The view whose visibility changed. Could be 'this' or
10219 * @param visibility The new visibility of changedView: {@link #VISIBLE},
10223 @Visibility int visibility) {
10224 onVisibilityChanged(changedView, visibility);
10228 * Called when the visibility of the view or an ancestor of the view has
10231 * @param changedView The view whose visibility changed. May be
10233 * @param visibility The new visibility, one of {@link #VISIBLE},
10236 protected void onVisibilityChanged(@NonNull View changedView, @Visibility int visibility) {
10265 * Dispatch a window visibility change down the view hierarchy.
10268 * @param visibility The new visibility of the window.
10272 public void dispatchWindowVisibilityChanged(@Visibility int visibility) {
10273 onWindowVisibilityChanged(visibility);
10277 * Called when the window containing has change its visibility
10284 * @param visibility The new visibility of the window.
10286 protected void onWindowVisibilityChanged(@Visibility int visibility) {
10287 if (visibility == VISIBLE) {
10297 * @param isVisible true if this view's visibility to the user is uninterrupted by its
10298 * ancestors or by window visibility
10311 * Called when the user-visibility of this View is potentially affected by a change
10334 * Returns the current visibility of the window this view is attached to
10337 * @return Returns the current visibility of the view's window.
10434 void dispatchCollectViewAttributes(AttachInfo attachInfo, int visibility) {
10435 performCollectViewAttributes(attachInfo, visibility);
10438 void performCollectViewAttributes(AttachInfo attachInfo, int visibility) {
10439 if ((visibility & VISIBILITY_MASK) == VISIBLE) {
11451 // Aggregated visibility changes are dispatched to attached views
15355 * Return the visibility value of the least visible component passed.
15366 void dispatchAttachedToWindow(AttachInfo info, int visibility) {
15369 mOverlay.getOverlayView().dispatchAttachedToWindow(info, visibility);
15390 performCollectViewAttributes(mAttachInfo, visibility);
15419 onVisibilityChanged(this, visibility);
18604 * the scrollbars, depending on the style and visibility of the scrollbars.
18697 * the scrollbars, depending on the style and visibility of the scrollbars.
20139 * @return Returns true if the effective visibility of the view at this
20233 * Request that the visibility of the status bar or other screen/window
20245 * <p>Two representative examples of the use of system UI visibility is
20272 * @param visibility Bitwise-or of flags {@link #SYSTEM_UI_FLAG_LOW_PROFILE},
20278 public void setSystemUiVisibility(int visibility) {
20279 if (visibility != mSystemUiVisibility) {
20280 mSystemUiVisibility = visibility;
20300 * Returns the current system UI visibility that is currently set for
20310 * Override to find out when the window's requested system UI visibility
20329 * Set a listener to receive callbacks when the visibility of the system bar changes.
20343 public void dispatchSystemUiVisibilityChanged(int visibility) {
20347 visibility & PUBLIC_STATUS_BAR_VISIBILITY_MASK);
22485 * visibility. This reports <strong>global</strong> changes to the system UI
22492 * Called when the status bar changes visibility because of a call to
22495 * @param visibility Bitwise-or of flags {@link #SYSTEM_UI_FLAG_LOW_PROFILE},
22497 * This tells you the <strong>global</strong> state of these UI visibility
22500 public void onSystemUiVisibilityChange(int visibility);
22788 * The current visibility of the window.
22846 * Hack to force certain system UI visibility flags to be cleared.
22851 * Last global system UI visibility reported by the window manager.
22868 * Set if the visibility of any views has changed.
23703 stream.addProperty("misc:visibility", getVisibility());