【发布时间】:2013-08-11 04:31:54
【问题描述】:
我在 MVVMCross 中使用 MvxListView https://github.com/slodge/MvvmCross
我将 FooterView 添加到 MvxListView 如下:
LayoutInflater _inflatorservice = (LayoutInflater)this.GetSystemService(Context.LayoutInflaterService);
View view = _inflatorservice.Inflate(Resource.Layout.footer_layout,null,false);
listView.AddFooterView(view);
但是当我运行应用程序时,我在 ListView 中看不到页脚视图。
如何在 MvxListView 中显示页脚视图?
谢谢
【问题讨论】:
标签: android-listview mono xamarin.android mvvmcross