代码错误,并且在new之后的第二行。
expandablelistAdapter的构造函数上。请帮帮我。

错误消息:无法实例化类型ExpandableListAdapter...。

mExpandableListView = (ExpandableListView) findViewById(R.id.list);
adapter = new ExpandableListAdapter(this,mExpandableListView,mGroupCollection);
mExpandableListView.setAdapter(adapter);

最佳答案

更改适配器ExpandableListAdapter的名称,这将解决您的问题。还要用新名称更改构造函数。

关于java - ExpandAbleListView的错误,无法实例化类型ExpandableListAdapter,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16289786/

10-11 14:45