ContentCaptureSession.NotifyViewAppeared(ViewStructure) 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.
Notifies the Content Capture Service that a node has been added to the view structure.
[Android.Runtime.Register("notifyViewAppeared", "(Landroid/view/ViewStructure;)V", "", ApiSince=29)]
public void NotifyViewAppeared (Android.Views.ViewStructure node);
[<Android.Runtime.Register("notifyViewAppeared", "(Landroid/view/ViewStructure;)V", "", ApiSince=29)>]
member this.NotifyViewAppeared : Android.Views.ViewStructure -> unit
Parameters
- node
- ViewStructure
node that has been added.
- Attributes
Remarks
Notifies the Content Capture Service that a node has been added to the view structure.
Typically called "manually" by views that handle their own virtual view hierarchy, or automatically by the Android System for views that return true
on View#onProvideContentCaptureStructure(ViewStructure, int)
.
Consider use #notifyViewsAppeared
which has a better performance when notifying a list of nodes has appeared.
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.