I want to change the background color of the child which is clicked in an ExpandableListView.
That is, when any child is clicked, it\'s background color should get changed.
How about lets say you try to directly refer your view and set the background like this,
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
v.setBackgroundColor(Color.BLUE);
return false;
}