首先创建一个Activity,在SetContentView时直接通过ImageView创建一个全屏的图片,大家还要考虑好分辨率和当前设备一致,onCreate添加代码如下:
new Handler().postDelayed(new Runnable(){
// 为了减少代码使用匿名Handler创建一个延时的调用
public void run() {
Intent i = new Intent(SplashScreen.this, Main.class);
//通过Intent打开最终真正的主界面Main这个Activity
SplashScreen.this.startActivity(i); //启动Main界面
SplashScreen.this.finish(); //关闭自己这个开场屏
}
}, 5000); //5秒,够用了吧