I have the following order in my listview, whenever the application is open and the footer is at the end, being that he was to remain in the middle of the items
<ListView.Header>
//First item
</ListView.Header>
<ListView.Footer>
//second item
</ListView.Footer>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
//third item
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage.Content>
Footer
is well, a footer and will be at the end of your listview, do want something after the Header (i.e. a sub-header) or do you mean a UI element in the middle of all the list view items? – SushiHangover