Xamarin.Forms中的ActivityIndi​​cator

时间:2015-08-09 10:29:41

标签: xamarin xamarin.forms

目前我正在开展一个项目,我必须从一个页面(第1页)导航到另一个页面(第2页)。由于page2需要很长时间才能加载,所以我想使用ActivityIndicator,但它根本没用。

请给我完整的代码以解决我的问题。

    Page(1)
    //code for tapping a label and to navigate to page2 
void onpage1tapped(Object sender,EventArgs args)
{  label1.Opacity=0.5;
   Device.StartTimer(TimeSpan.FromMilliseconds(100),()=>{label1.Opacity=1;return false;   })
   This.Navigate.PushAsync(new Page2());
} 

   Page(2)
 //constructor for page2
 public page2
 {   InitializeComponent();
      ActivityIndicator indicator=new ActivityIndicator{HorizontalOptions=LayoutOptions.CenterAndExpand,Color=Color.Black,IsVisible=false};
      StackLayout stk=new StackLayout();
      stk.Children.Add(indicator);
    //Enabling activityindicator  
      indicator.IsRunning=true;
      indicator.IsVisible=true;

   //Below long time taking task
      Assembly assembly = GetType().GetTypeInfo().Assembly;
        string resource = String.Format("ks.texts.BST.txt");
        //string resource = "advjava.texts.insertion.txt";
        using (Stream s = assembly.GetManifestResourceStream(resource))
        {
            using (StreamReader sr = new StreamReader(s))
            {
                string line;
                while (null != (line = sr.ReadLine()))
                {

                    Label l = new Label { Text = line, TextColor = Color.FromRgb(110, 139, 69), FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)) };
                    stk.Children.Add(l);

                }
            }
        }           

       //Disabling Activity indicator as the long task is complete
    indicator.IsVisible=false;
    indicator.IsRunning=false;
 }

3 个答案:

答案 0 :(得分:2)

使用Acr.XamForms.UserDialogs Package。看看吧..希望有所帮助

Here是一个关于如何实现Acr.XamForms.UserDialogs的文档。 希望它有所帮助

答案 1 :(得分:0)

这只是一个示例代码,但它的逻辑是对的,而且非常适合我。 :)

        var indicator = new ActivityIndicator() {
            HorizontalOptions = LayoutOptions.CenterAndExpand
        };
        indicator.SetBinding(ActivityIndicator.IsVisibleProperty, "IsBusy", BindingMode.OneWay);
        indicator.SetBinding(ActivityIndicator.IsRunningProperty, "IsBusy", BindingMode.OneWay);

        var button = new Button() {
            HorizontalOptions = LayoutOptions.Fill,
            Text = "BUTTON"
        };

        button.Clicked += (sender, e) => IsBusy = !IsBusy;

        var root = new StackLayout() {
            HorizontalOptions = LayoutOptions.FillAndExpand,
            VerticalOptions = LayoutOptions.FillAndExpand,
            Children = {
                button, 
                indicator
            }
        };

        Content = root;

你可以参考这个Link,它通过 ChaseFlorell 给出关于Github的明确说明。

工作样本:Github

答案 2 :(得分:0)

问题在于如何读取您的代码。它会完成,然后执行,但是如果您使用Task.Run,​​您将能够在单独的线程上运行,并使该活动指示器保持运行状态,以显示您的页面正在加载并且计算机正忙。 >

void onpage1tapped(Object sender,EventArgs args) {  
    activityIndicator.IsVisible= true;
    Task.Run( () =>  {
        label1.Opacity=0.5;
        Device.StartTimer(TimeSpan.FromMilliseconds(100),()= {
            label1.Opacity=1;returnfalse;   
        })
        This.Navigate.PushAsync(new Page2());
    });
}