AutofillManager.NotifyViewVisibilityChanged Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
NotifyViewVisibilityChanged(View, Int32, Boolean) |
Called when a virtual view's visibility changed. |
NotifyViewVisibilityChanged(View, Boolean) |
Called when a |
NotifyViewVisibilityChanged(View, Int32, Boolean)
Called when a virtual view's visibility changed.
[Android.Runtime.Register("notifyViewVisibilityChanged", "(Landroid/view/View;IZ)V", "", ApiSince=27)]
public void NotifyViewVisibilityChanged (Android.Views.View view, int virtualId, bool isVisible);
[<Android.Runtime.Register("notifyViewVisibilityChanged", "(Landroid/view/View;IZ)V", "", ApiSince=27)>]
member this.NotifyViewVisibilityChanged : Android.Views.View * int * bool -> unit
Parameters
- view
- View
View
that was exited.
- virtualId
- Int32
id identifying the virtual child inside the parent view.
- isVisible
- Boolean
visible if the view is visible in the view hierarchy.
- Attributes
Remarks
Called when a virtual view's visibility changed.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
NotifyViewVisibilityChanged(View, Boolean)
Called when a View view's
visibility changed.
[Android.Runtime.Register("notifyViewVisibilityChanged", "(Landroid/view/View;Z)V", "", ApiSince=27)]
public void NotifyViewVisibilityChanged (Android.Views.View view, bool isVisible);
[<Android.Runtime.Register("notifyViewVisibilityChanged", "(Landroid/view/View;Z)V", "", ApiSince=27)>]
member this.NotifyViewVisibilityChanged : Android.Views.View * bool -> unit
Parameters
- view
- View
View
that was exited.
- isVisible
- Boolean
visible if the view is visible in the view hierarchy.
- Attributes
Remarks
Called when a View view's
visibility changed.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.