我无法访问 MvxListView 的 EmptyView 属性。知道我在这里想念什么吗?
我的布局代码:
<Mvx.MvxListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
local:MvxBind="ItemsSource Items"
local:MvxItemTemplate="@layout/listelement" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/empty">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:id="@+id/emptyTextView"
android:text="Hello World"
android:layout_centerInParent="true" />
</RelativeLayout>
当我尝试访问 EmptyView 时,它为空。这是我尝试过的:
var list = FindViewById<MvxListView>(Resource.Id.listview);
list.EmptyView.FindViewById<TextView>(Resource.Id.emptyTextView); //EmptyView is null here
提前致谢!