2

ExpandableListAdapter 是否支持 BaseAdapter 覆盖 getItemViewType 和 getViewTypeCount 的任何功能,我可以在其中创建各种视图类型

getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent)

?

谢谢

4

1 回答 1

3

ExpandableListAdapter 没有,但它是 BaseExpandableListAdapter 的子类。因此,间接地,其他子类 CursorTreeAdapter、ResourceCursorTreeAdapter、SimpleCursorTreeAdapter 和 SimpleExpandableListAdapter 也是如此。

这些方法是:

    public int getChildType(final int groupPosition, final int childPosition)
    public int getChildTypeCount()
于 2012-05-02T10:51:40.547 回答