当前位置: 代码迷 >> Android >> Android学习札记-Android简单有效的闪屏制作
  详细解决方案

Android学习札记-Android简单有效的闪屏制作

热度:18   发布时间:2016-05-01 15:35:53.0
Android学习笔记----Android简单有效的闪屏制作
    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        new Handler().postDelayed(new Runnable(){			public void run() {                Intent mainIntent = new Intent(SplashActivity.this,MainActivity.class);                 SplashActivity.this.startActivity(mainIntent);                 SplashActivity.this.finish(); 			}}, 10000);    }

?

在API中对于Handler的postDelayed方法描述如下:

Android API 写道
final boolean postDelayed(Runnable r, long delayMillis) Causes the Runnable r to be added to the message queue, to be run after the specified amount of time elapses.

?

将Runnable对象r在经过deleyMillis的时间后加入到消息队列,也就是讲过多久以后做什么事情就可以了。看起来很简单,有点类似于HTML里面的setTimeout和setInternal方法,使用也非常简单。

?

  相关解决方案