ExpandableListView.ExpandGroup Method

Definition

Overloads

ExpandGroup(Int32, Boolean)

Expand a group in the grouped list view

ExpandGroup(Int32)

Expand a group in the grouped list view

ExpandGroup(Int32, Boolean)

Expand a group in the grouped list view

[Android.Runtime.Register("expandGroup", "(IZ)Z", "GetExpandGroup_IZHandler")]
public virtual bool ExpandGroup (int groupPos, bool animate);
[<Android.Runtime.Register("expandGroup", "(IZ)Z", "GetExpandGroup_IZHandler")>]
abstract member ExpandGroup : int * bool -> bool
override this.ExpandGroup : int * bool -> bool

Parameters

groupPos
Int32

the group to be expanded

animate
Boolean

true if the expanding group should be animated in

Returns

True if the group was expanded, false otherwise (if the group was already expanded, this will return false)

Attributes

Remarks

Expand a group in the grouped list view

Java documentation for android.widget.ExpandableListView.expandGroup(int, boolean).

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

ExpandGroup(Int32)

Expand a group in the grouped list view

[Android.Runtime.Register("expandGroup", "(I)Z", "GetExpandGroup_IHandler")]
public virtual bool ExpandGroup (int groupPos);
[<Android.Runtime.Register("expandGroup", "(I)Z", "GetExpandGroup_IHandler")>]
abstract member ExpandGroup : int -> bool
override this.ExpandGroup : int -> bool

Parameters

groupPos
Int32

the group to be expanded

Returns

True if the group was expanded, false otherwise (if the group was already expanded, this will return false)

Attributes

Remarks

Expand a group in the grouped list view

Java documentation for android.widget.ExpandableListView.expandGroup(int).

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