Added in API level 1
    OnChildClickListener
interface OnChildClickListener
| android.widget.ExpandableListView.OnChildClickListener | 
Interface definition for a callback to be invoked when a child in this expandable list has been clicked.
Summary
| Public methods | |
|---|---|
| abstract Boolean | onChildClick(parent: ExpandableListView!, v: View!, groupPosition: Int, childPosition: Int, id: Long)Callback method to be invoked when a child in this expandable list has been clicked. | 
Public methods
onChildClick
Added in API level 1
      abstract fun onChildClick(
parent: ExpandableListView!,
v: View!,
groupPosition: Int,
childPosition: Int,
id: Long
): Boolean
Callback method to be invoked when a child in this expandable list has been clicked.
| Parameters | |
|---|---|
| parent | ExpandableListView!: The ExpandableListView where the click happened | 
| v | View!: The view within the expandable list/ListView that was clicked | 
| groupPosition | Int: The group position that contains the child that was clicked | 
| childPosition | Int: The child position within the group | 
| id | Long: The row id of the child that was clicked | 
| Return | |
|---|---|
| Boolean | True if the click was handled | 
