2

ExpandableListAdapter は、さまざまなビュー タイプを作成できる getItemViewType および getViewTypeCount をオーバーライドする BaseAdapter として任意の関数をサポートしますか

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 に答える