Is there a way to avoid my ExpandableList close when I click on it ? I tried:
@Override
public void onClick(View v) {
if (v == expandableList){
expandableList.expandGroup(0); //Let's imagine there's only one parent and one child
}
}
But it doesn't work.