我在 MVVMCross https://github.com/slodge/MvvmCross
中使用 MvxListView
我将 FooterView 添加到 MvxListView 如下:
LayoutInflater _inflatorservice = (LayoutInflater)this.GetSystemService(Context.LayoutInflaterService);
View view = _inflatorservice.Inflate(Resource.Layout.footer_layout,null,false);
listView.AddFooterView(view);
但是当我运行应用程序时,我在 ListView 中看不到页脚视图。
如何在 MvxListView 中显示页脚视图?谢谢