flowlistview刷新停止

时间:2019-01-13 15:15:13

标签: android listview xamarin xamarin.forms activity-indicator

我有这种方法:

public async void Load()
{
    this.IsRefreshing = true;
    // await CODE
    this.IsRefreshing = false;
}

Porperty IsRefreshing运行正常(INotifyPropertyChanged其确定)。 我第一次运行Load方法花了一些时间,flowlistview显示了活动指标,直到加载完成,但是下一次,load方法太快了,似乎(IsRefreshing =“ {Binding IsRefreshing}”)无法正常工作,activityindicator保持旋转。

IsPullToRefreshEnabled =“ True”。

我在构造函数中调用Load()。

0 个答案:

没有答案