Lottie动画作为加载指示器-Xamarin.forms

时间:2019-09-25 05:05:58

标签: xamarin.forms

我有一个xamarin表单应用程序,其中包含使用 microcharts 的饼图。该图的数据是从Web API获得的。一切正常,每次图表都从Web API加载数据时都会有一些延迟,因此图表的显示也会花费时间。我想做的是在图形出现之前使用 Lottie animation 作为加载指示器。动画会显示,但会闪烁并加载图形。

我做了什么

我的xaml

  <Grid>
         <forms1:AnimationView 
                x:Name="AnimationView"                
                Animation="graphloading.json"       
                AutoPlay="True"
                Margin="10"              
                BackgroundColor="Transparent"                           
                VerticalOptions="FillAndExpand"
                HorizontalOptions="FillAndExpand" />    

                        <forms:ChartView x:Name="Chart1" isVisible="False"
                        HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"/>                     
                    </Grid>

我的Xaml.cs文件

protected override async void OnAppearing()
    {              
        await LoadDynamicGraph();
    }

    private async Task LoadDynamicGraph()
    {
        await Task.Run(() =>
        {                                          
                    // Graph Loading API call code                          
                        if (GraphDataObj[0] != null)
                        {
                            Device.BeginInvokeOnMainThread(() =>
                            {

                                AnimationView.IsPlaying = false;
                                AnimationView.IsVisible = false;
                                Chart1.IsVisible = true;                                
                                foreach (var item in GraphDataObj[0].DailyScore)
                                {
                                    FirstGraphData = new List<ChartEntry>
                                    {
                                      new ChartEntry(float.Parse(item.CompletedItems))
                                    {

                                        Label = "Completed",                                           
                                       // ValueLabel = item.CompletedItems,
                                        Color = SKColor.Parse("#c90484"),
                                        TextColor = SKColor.Parse("#FFFFFF"),
                                    },

                                      new ChartEntry(float.Parse(item.TotalOpenItems))
                                    {
                                        Label = "Total ",
                                       // ValueLabel = item.TotalOpenItems,
                                        Color = SKColor.Parse("#00a8f3"),
                                        TextColor = SKColor.Parse("#FFFFFF"),
                                    }
                                    };
                                }
                                Chart1.Chart = new PieChart()
                                {
                                    Entries = FirstGraphData,
                                    BackgroundColor = SKColor.Parse("#002F4F4F")
                                };

                            });
                        }

        });

    }

当前,动画只是出现并显示。我想让它显示一些时间,然后加载图形。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

设置此

AnimationView.IsPlaying = false;
AnimationView.IsVisible = false;
Chart1.IsVisible = true;

在功能末尾。它仍然会非常快。您可以尝试一次设置计时器。

      finish = true;
      Device.StartTimer(TimeSpan.FromSeconds(5), () =>
            {
                If(finish){
                    finish = false;
                    return true;}
                //there turn off your animation
                return false;
            });