View.AddChildrenForAccessibility(IList<View>) Method

Definition

Adds the children of this View relevant for accessibility to the given list as output.

[Android.Runtime.Register("addChildrenForAccessibility", "(Ljava/util/ArrayList;)V", "GetAddChildrenForAccessibility_Ljava_util_ArrayList_Handler")]
public virtual void AddChildrenForAccessibility (System.Collections.Generic.IList<Android.Views.View>? outChildren);
[<Android.Runtime.Register("addChildrenForAccessibility", "(Ljava/util/ArrayList;)V", "GetAddChildrenForAccessibility_Ljava_util_ArrayList_Handler")>]
abstract member AddChildrenForAccessibility : System.Collections.Generic.IList<Android.Views.View> -> unit
override this.AddChildrenForAccessibility : System.Collections.Generic.IList<Android.Views.View> -> unit

Parameters

outChildren
IList<View>

The output list that will receive children for accessibility.

Attributes

Remarks

Adds the children of this View relevant for accessibility to the given list as output. Since some Views are not important for accessibility the added child views are not necessarily direct children of this view, rather they are the first level of descendants important for accessibility.

Java documentation for android.view.View.addChildrenForAccessibility(java.util.ArrayList<android.view.View>).

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