码迷,mamicode.com
首页 > 移动开发 > 详细

Xamarin.Android中实现延迟跳转

时间:2017-12-10 00:04:15      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:detail   .net   rac   实现   ati   task   post   style   override   

http://blog.csdn.net/candlewu/article/details/52953228

 

方法一: 使用Handler().PostDelayed 延迟启动
new Handler().PostDelayed(
()=>
{
Intent localIntent = new Intent(this, typeof(LoginActivity)); StartActivity(localIntent);
} , 2000); //2000是延迟的时间,2000毫秒,2秒,下面类似
方法二:
1、 继承TimerTask
public class newTimer :TimerTask
{
 
private Activity oldActivity;
private delegate void startActivity(Intent intent);
public Intent intent;
public newTimer(Activity _oldActivity)
{
oldActivity = _oldActivity;
}
public override void Run()
{
intent = new Intent(oldActivity, typeof(LoginActivity));
oldActivity.StartActivity(intent);
}
}
2、 启动
Timer timer = new Timer();
timer.Schedule(new newTimer(this),3000);

Xamarin.Android中实现延迟跳转

标签:detail   .net   rac   实现   ati   task   post   style   override   

原文地址:http://www.cnblogs.com/LuoEast/p/8012864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!