-
public interface ThinkingExpandableListViewItemTrackPropertiesExpandableListView This interface can be implemented through Adapter to add custom properties to the control click event that is triggered when an item is clicked.
-
-
Method Summary
Modifier and Type Method Description abstract JSONObjectgetThinkingChildItemTrackProperties(int groupPosition, int childPosition)Property when clicking on the item at childPosition. abstract JSONObjectgetThinkingGroupItemTrackProperties(int groupPosition)Property when clicking groupPosition item. -
-
Method Detail
-
getThinkingChildItemTrackProperties
abstract JSONObject getThinkingChildItemTrackProperties(int groupPosition, int childPosition)
Property when clicking on the item at childPosition.
- Parameters:
groupPosition- The child's parent group's position.childPosition- The child position within the group.
-
getThinkingGroupItemTrackProperties
abstract JSONObject getThinkingGroupItemTrackProperties(int groupPosition)
Property when clicking groupPosition item.
- Parameters:
groupPosition- the group position
-
-
-
-