Xamarin和MVVMCross - EmployeeDirectory

时间:2013-12-30 10:05:28

标签: mvvmcross

Xamarin.Android有一个名为EmployeeDirectory的小型演示。我期待在MVVMX中实现PersonActivity。此活动基本上是一个列表视图,它从VM获取任意数据,并以分组模式显示它们。

我已经在MVVMx会议示例中摆弄了Grouped listview,并让它发挥作用。这和我正在寻找的一样接近。是否有任何模仿EmployeeDirectory PersonActivity页面的MVVMx示例? http://xamarin.com/prebuilt/employeedirectory

1 个答案:

答案 0 :(得分:1)

如果您正在寻找ListView的样本,您可能需要查看一些N + 1视频,特别是书籍(N-06 - N-07),小猫(N-10 - N-11),和CollectABull(N-12 - N-17)

N + 1 MvvmCross https://github.com/MvvmCross/NPlus1DaysOfMvvmCross

MvvmCross教程 https://github.com/MvvmCross/MvvmCross-Tutorials

例如:

https://github.com/MvvmCross/NPlus1DaysOfMvvmCross/blob/master/N-06-Books/Books.Droid/Resources/Layout/FirstView.axml

    <Mvx.MvxListView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    local:MvxBind="ItemsSource Results" 
    local:MvxItemTemplate="@layout/item_book"
    />

http://www.youtube.com/watch?v=He6QvnLsPUA