码迷,mamicode.com
首页 > 其他好文 > 详细

检测网络及启动画面

时间:2015-04-07 09:31:11      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

new Thread(new Runnable() {
            @Override
            public void run() {
                //记录线程开始时间
                long currentTime = System.currentTimeMillis();
                //请求网络
                //...省略代码
                //结束时间
                long stopTime = System.currentTimeMillis();
                
                //间隔时间
                long time = stopTime-currentTime;
                //间隔时间小于页面停留时间,则线程休眠,休眠时间=停留时间-已经执行代码的时间
                if (time<2000) {
                    try {
                        Thread.sleep(2000-time);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }).start();

 

检测网络及启动画面

标签:

原文地址:http://www.cnblogs.com/guduey/p/4397418.html

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