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.
Asked
Active
Viewed 259 times
1 Answers
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.