Splash Screen开场屏在Android中的实现

首先创建一个Activity,在SetContentView时直接通过ImageView创建一个全屏的图片,大家还要考虑好分辨率和当前设备一致,onCreate添加代码如下:

1 new Handler().postDelayed(new Runnable(){   
2 // 为了减少代码使用匿名Handler创建一个延时的调用
3             public void run() {   
4                 Intent i = new Intent(SplashScreen.this, Main.class);    
5                 //通过Intent打开最终真正的主界面Main这个Activity
6                 SplashScreen.this.startActivity(i);    //启动Main界面
7                 SplashScreen.this.finish();    //关闭自己这个开场屏
8             }   
9         }, 5000);  

你可能感兴趣的:(screen,Splash,开场屏)