I need to ExpandableListView in ExpandableListView show drop-down lists at a certain point in time, I try expListView.setEnabled(false) , drop-down lists are not shown, but scrolling of elements in ExpandableListView stops working. What other options are there that scrolling would not stop working?

    1 answer 1

    Try this:

     expandableList.setOnGroupClickListener(new OnGroupClickListener() { @Override public boolean onGroupClick(ExpandableListView parent, View v, int groupPosition, long id) { return true; // This way the expander cannot be collapsed } }); 
    • one
      Cyril, thanks, works! - Lucky_girl