Reputation: 1611
I want to create custome expandable list view in android but when I click on child, no value found and my click event is given below:
mExpandableListView.setOnChildClickListener(new OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
Toast.makeText(getBaseContext(), "Child clicked",
Toast.LENGTH_SHORT).show();
return true;
}
});
Anyone knows? please help Thanks In Advance
Upvotes: 1
Views: 1764