In this class
public class Rest_name_adapter extends BaseExpandableListAdapter {
}
I have put Logs in all the methods to check the sequence of called methods. But from the statement in my activity class
exp_listView.setAdpater(new Rest_name_adapter(getParent(), group_list, child_list));
It goes to the Rest_name_adapter class, just calls the contructor and nothing else. I dont know why It is not calling this: getChildView()
and getGroupView()
methods?? In context, I have used getParent()
because this is the child of TabGroupActivity
. Please help