I am trying to implement a grouped list on Android similar to iOS. So I am trying to write my own MvxAdapter, which supports grouped section headers. By default, an MvxListView created from axml will create a default MvxAdapter. Since I need to provide my own MvxAdapter, I need to create an MvxListview programmatically so that I can switch to my own adapter. The problem I am facing is the OnCreate time of my android view, where I am trying to create my custom MvxAdapter, the Android binding context is null derived from
MvxAndroidBindingContextHelpers.Current()
Is there an example of creating an MvxListView programmatically using a custom MvxAdapter with v3 API?
source share