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

Android handler

时间:2015-07-04 10:57:12      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

handler的使用场合

1。在开机阶段,splash画面
在SplashActivity中添加
protected void onResume() //在onCreate之后、以及每次横竖切屏、从其他界面返回的时候,都会被调用
    {
        super.onResume();
        new Handler().postDelayed(new Runnable()
        {
            @Override
            public void run()
            {
                //Finish the splash activity so it can‘t be returned to.
                SplashActivity.this.finish();
                Intent mainIntent = new Intent(SplashActivity.this, Accueil.class);
                SplashActivity.this.startActivity(mainIntent);
            }
        }, 4000);
    }
此方法会把传递给postDelayed方法中的Runnable对象在指定的时间后执行,并且是在此Handler所关联的线程中执行

Android handler

标签:

原文地址:http://www.cnblogs.com/qionglouyuyu/p/4620228.html

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