Last active
November 27, 2015 13:20
-
-
Save fnzainal/4526f3ecfe26ae02efeb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public void onStop() { | |
super.onStop(); | |
//params listAdapter, name of ExpandableListAdapter | |
for (int i =0;i<listAdapter.getGroupCount();i++){ | |
//params expListView, name of ExpandableListView | |
expListView.collapseGroup(i); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment