任务流程不起作用xamarin.android项目

时间:2016-08-30 15:39:53

标签: c# android xamarin process task

我有这个任务流程应该控制我的edittext的文本,当长度是21时,它应该运行一个方法。 似乎该过程运行一次 这是代码:

Task.Factory.StartNew(() =>
            {
                 if (macAddress.Text.Length == 21)
                {
                     address = Regex.Replace(macAddress.Text, "[^0-9.]", "");
                 }

                 btSocket = b.AndroidBtConnection(address, MY_UUID);
                 if (btSocket == null)
                 {
                     Console.WriteLine("connessione nulla");
                     macAddress.Text = "";
                 }
             });

0 个答案:

没有答案