android的实现非常简单,使用Handler对象的postDelayed方法就可以实现。在这个方法里传递一个Runnable对象和一个延迟的时间。该方法实现了一个延迟执行的效果,延迟的时间由第2个参数指定,单位是毫秒。第一个参数是Runnable对象,里面包含了延迟后需要执行的操作。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 全屏 隐藏状态栏
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
// 隐藏标题栏 Activity
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
// 隐藏标题栏 AppCompatActivity
if (getSupportActionBar() != null){
getSupportActionBar().hide();
}
setContentView(R.layout.splash);
// 匿名Handler创建一个延时的调用
new Handler().postDelayed(new Runnable() {
public void run() {
Intent intent = new Intent();
intent.setClass(SplashActivity.this, MainActivity.class); //从启动动画ui跳转到主界面
SplashActivity.this.startActivity(intent);
SplashActivity.this.finish(); // 结束启动界面
}
}, 1000 * 3); // 启动动画持续3秒钟
}