forked from sam-lippert/Android.Dialog
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
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 :/
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels