我需要在ListView中显示非常大的数据。必须加载所有数据一次吗?我的代码如下:
using System.Collections.ObjectModel;
namespace Brunie.Mobile.ViewModels {
public class VmListCompany {
public ObservableCollection<Company> AllCompanies {
get;
} = new ObservableCollection<Company>();
public VmListCompany() {
LoadAllCompanies();
}
private void LoadAllCompanies() {
Company company = null;
while(null != (company = GetNextCompany(company))) {
AllCompanies.Add(company);
}
}
private bool HasNextCompany(Company company) {
bool hasNextCompany = false;
......
return (hasNextCompany);
}
private Company GetNextCompany(Company company) {
if(!HasNextCompany(company)) {
return (null);
}
Company nextCompany = new Company();
......
return (nextCompany);
}
}
public class Company {
public string Name {
get;
set;
}
public string Address {
get;
set;
}
public int NumberOfEmployees {
get;
set;
}
}
}
Xaml中的ListView:
<ListView ItemsSource="{Binding AllCompanies}">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Label Text="{Binding Name}" />
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
在调用LoadAllCompanies之后,AllCompanies的计数为20562104。所以我的应用程序现在非常慢。如何处理这种情况?
发布于 2020-02-13 03:42:57
正如@Chetan所说,使用API分页是最好的方法。尽管如此,如果您由于某些原因无法更改分页(假设它是第三方API),您仍然可以通过优化列表视图的缓存策略来提高性能,如文档所示
发布于 2020-02-13 02:40:14
在API端使用分页并在ListItemAppearing上加载数据
https://stackoverflow.com/questions/60205278
复制