没有Xamarin.Forms的Xamarin BeginInvokeOnMainThread

时间:2016-04-14 09:42:08

标签: xamarin xamarin.forms xamarin.android

很抱歉,我确定这将是一个非常愚蠢的问题..

我在我的Xamarin应用程序中使用Android UI而非Xamarin Forms作为表示层,但我想使用Activity.RunOnUIThread(来自Android),所有Xamarin文档都建议使用Device.BeginInvokeOnMainThread(来自Xamarin.Forms)项目。显然我没有这个,因为我没有参考xamarin.forms项目。

如果我不想使用表单,我在哪里可以找到Xamarin中的run-on-ui-thread机制?

3 个答案:

答案 0 :(得分:7)

的Android:

Android Activity有一个RunOnUiThread方法可以使用:

RunOnUiThread  ( () => {
    // manipulate UI controls
});

参考:https://developer.xamarin.com/api/member/Android.App.Activity.RunOnUiThread/p/Java.Lang.IRunnable/

的iOS:

InvokeOnMainThread (delegate {  
    // manipulate UI controls
});

答案 1 :(得分:5)

如果您想通过PCL /共享代码以及项目中的其他任何位置执行此操作。你有两种选择。

跨平台方式,使用本机机制

  • 将此添加到PCL

    public class InvokeHelper
    {
        public static Action<Action> Invoker;
    
        public static void Invoke(Action action)
        {
            Invoker?.Invoke(action);
        }
    }
    
  • 将此添加到iOS(例如AppDelegate)

    public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
    {
        // ...
    
        InvokeHelper.Invoker = InvokeOnMainThread;
        return true;
    }
    
  • 将此添加到Android(例如您的应用程序类)

    [Application]
    class MainApplication : Application
    {
        protected MainApplication(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
        {
        }
    
        public override void OnCreate()
        {
            base.OnCreate();
            InvokeHelper.Invoker = (action) =>
            {
                var uiHandler = new Handler(Looper.MainLooper);
                uiHandler.Post(action);
            };
        }
    }
    

然后您可以使用共享代码进行调用

InvokeHelper.Invoke(() => DoSomething("bla"));

完成跨平台方式

您也可以实施InvokeHelper跨平台。

public class InvokeHelper
{
    // assuming the static initializer is executed on the UI Thread.
    public static SynchronizationContext mainSyncronisationContext = SynchronizationContext.Current;

    public static void Invoke(Action action)
    {
        mainSyncronisationContext?.Post(_ => action(), null);
    }
}

答案 2 :(得分:1)

这里有一个从official documentation获得的示例:

public class ThreadDemo : Activity
{
  TextView textview;

  protected override void OnCreate (Bundle bundle)
  {
      base.OnCreate (bundle);
      // Create a new TextView and set it as our view
      textview = new TextView (this);
      textview.Text = "Working..";
      SetContentView (textview);
      ThreadPool.QueueUserWorkItem (o => SlowMethod ());
  }

  private void SlowMethod ()
  {
      Thread.Sleep (5000);
      RunOnUiThread (() => textview.Text = "Method Complete");
  }
}

基本上,如果您想运行多行代码,可以执行以下操作:

RunOnUiThread(()=>{
  MethodOne();
  MethodTwo();
});

source