Skip to content

GetHeaderView not used? #6

@slodge

Description

@slodge

Looking at the Adapter, I see:

    public override View GetView(int position, View convertView, ViewGroup parent)
    {
        var element = ElementAtIndex(position);
        if (element == null)
        {
            element = ElementAtIndex(position - 1);
            while (!(element is Section))
                element = element.Parent;
            return ((Section)element).GetFooterView(_context, convertView, parent);
        }
        return element.GetView(_context, convertView, parent);
    }

This suggests FooterView is 'hacked in' a bit - but HeaderView isn't :/

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions