How can I convert this type of Arraylist to Two Dimensional Arraylist ?
ArrayList<ArrayList<String>> two = new ArrayList<ArrayList<String>>();
In android ExpandableListView does not allow to use Arraylist to populate the listview. But I have to dynamically populate the data from JSON web service. How Can I solve this issue ?
Any help would be great !