0

I've bound my list view to an observable collection but I want the last item in the list to be an 'add item' button. I could do this in 'normal' Android with a custom adapter but I'm not sure how to do it with MvvmCross.

Jeremy
  • 601
  • 4
  • 14

1 Answers1

0

You should do this natively the same way you would on Android. I would suggest you use the ListView#addFooterView() to add a View at the bottom of the ListView.

See this question.

There are other suggestions on there such as what you would do to have a fixed button that is always visible on the bottom of the screen.

Community
  • 1
  • 1
PkL728
  • 955
  • 8
  • 21