将MvxListView绑定到ViewModel时,我似乎遇到了一个奇怪的问题。我已经对ViewModel进行了三重检查,并可以确认它是否已正确连接,因为另外两个原始类型已正确绑定。
但是,当我尝试绑定到ObservableCollection(或MvxObservableCollection)时,在MvxListView中没有呈现任何项目。我遵循了调试日志,并且看不到MvvmCross错误,也看不到任何Android膨胀问题。
正如您在我的代码中看到的那样,我尝试了各种改变财产的方法。
这让我发疯了!任何帮助将不胜感激。也许我错过了一些愚蠢的事情。
ViewModel:
private MvxObservableCollection<ReminderDto> _reminders;
public MainViewModel(IApiService apiService)
{
_apiService = apiService;
}
public override void ViewAppearing()
{
Reminders = new MvxObservableCollection<ReminderDto>()
{
new ReminderDto() { Description = "Test" },
new ReminderDto() { Description = "Test" },
new ReminderDto() { Description = "Test" },
new ReminderDto() { Description = "Test" },
new ReminderDto() { Description = "Test" },
new ReminderDto() { Description = "Test" },
new ReminderDto() { Description = "Test" },
};
RaisePropertyChanged(nameof(Reminders));
}
public MvxObservableCollection<ReminderDto> Reminders
{
get { return _reminders; }
set { SetProperty(ref _reminders, value); }
}
MainView.axml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<MvxListView
android:layout_width="match_parent"
android:layout_height="match_parent"
local:MvxBind="ItemSource Reminders"
local:MvxItemTemplate="@layout/reminder_row" />
项目模板(reminder_row.axml)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/reminder_danger"
android:weightSum="6">
<TextView
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minWidth="25px"
android:minHeight="25px"
android:id="@+id/textView1" />
答案 0 :(得分:2)
要加载集合的属性是ItemsSource
,而不是ItemSource
。
替换为:
local:MvxBind="ItemSource Reminders"
与此:
local:MvxBind="ItemsSource Reminders"