IExpandableListAdapter Interface

Definition

An adapter that links a ExpandableListView with the underlying data.

[Android.Runtime.Register("android/widget/ExpandableListAdapter", "", "Android.Widget.IExpandableListAdapterInvoker")]
public interface IExpandableListAdapter : Android.Runtime.IJavaObject, IDisposable, Java.Interop.IJavaPeerable
[<Android.Runtime.Register("android/widget/ExpandableListAdapter", "", "Android.Widget.IExpandableListAdapterInvoker")>]
type IExpandableListAdapter = interface
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
Derived
Attributes
Implements

Remarks

An adapter that links a ExpandableListView with the underlying data. The implementation of this interface will provide access to the data of the children (categorized by groups), and also instantiate Views for children and groups.

Java documentation for android.widget.ExpandableListAdapter.

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.

Properties

GroupCount

Gets the number of groups.

Handle

Gets the JNI value of the underlying Android object.

(Inherited from IJavaObject)
HasStableIds

Indicates whether the child and group IDs are stable across changes to the underlying data.

IsEmpty
JniIdentityHashCode

Returns the value of java.lang.System.identityHashCode() for the wrapped instance.

(Inherited from IJavaPeerable)
JniManagedPeerState

State of the managed peer.

(Inherited from IJavaPeerable)
JniPeerMembers

Member access and invocation support.

(Inherited from IJavaPeerable)
PeerReference

Returns a JniObjectReference of the wrapped Java object instance.

(Inherited from IJavaPeerable)

Methods

AreAllItemsEnabled()
Disposed()

Called when the instance has been disposed.

(Inherited from IJavaPeerable)
DisposeUnlessReferenced()

If there are no outstanding references to this instance, then calls Dispose(); otherwise, does nothing.

(Inherited from IJavaPeerable)
Finalized()

Called when the instance has been finalized.

(Inherited from IJavaPeerable)
GetChild(Int32, Int32)

Gets the data associated with the given child within the given group.

GetChildId(Int32, Int32)

Gets the ID for the given child within the given group.

GetChildrenCount(Int32)

Gets the number of children in a specified group.

GetChildView(Int32, Int32, Boolean, View, ViewGroup)

Gets a View that displays the data for the given child within the given group.

GetCombinedChildId(Int64, Int64)

Gets an ID for a child that is unique across any item (either group or child) that is in this list.

GetCombinedGroupId(Int64)

Gets an ID for a group that is unique across any item (either group or child) that is in this list.

GetGroup(Int32)

Gets the data associated with the given group.

GetGroupId(Int32)

Gets the ID for the group at the given position.

GetGroupView(Int32, Boolean, View, ViewGroup)

Gets a View that displays the given group.

IsChildSelectable(Int32, Int32)

Whether the child at the specified position is selectable.

OnGroupCollapsed(Int32)

Called when a group is collapsed.

OnGroupExpanded(Int32)

Called when a group is expanded.

RegisterDataSetObserver(DataSetObserver)
SetJniIdentityHashCode(Int32)

Set the value returned by JniIdentityHashCode.

(Inherited from IJavaPeerable)
SetJniManagedPeerState(JniManagedPeerStates) (Inherited from IJavaPeerable)
SetPeerReference(JniObjectReference)

Set the value returned by PeerReference.

(Inherited from IJavaPeerable)
UnregisterDataSetObserver(DataSetObserver)
UnregisterFromRuntime()

Unregister this instance so that the runtime will not return it from future Java.Interop.JniRuntime+JniValueManager.PeekValue invocations.

(Inherited from IJavaPeerable)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to