首页 > 解决方案 > flowlistview refreshing dosent stop

问题描述

i have this method:

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

Porperty IsRefreshing is working fine (INotifyPropertyChanged its OK). The first time i run Load method took some time and the flowlistview shows the activityindicator until load is completed, but next times load method is too fast and it seems the (IsRefreshing="{Binding IsRefreshing}") is not working and the activityindicator keeps spinning.

IsPullToRefreshEnabled="True".

Im calling Load() in the constructor.

标签: androidlistviewxamarinxamarin.formsactivity-indicator

解决方案


推荐阅读