闪屏:在打开App时,展示,持续数秒后,自动关闭,进入另外的一个界面,SplashActivity跳转到MainActivity
Android中有三种实现方法
xml代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.administrator.test.SplashActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/splash_iv"
android:scaleType="fitXY"
android:src="@mipmap/splash"/>
</RelativeLayout>
(1)利用Handler对象的postDelayed方法可以实现,传递一个Runnable对象和一个需要延时的时间即可
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent=new Intent(SplashActivity.this,MainActivity.class);
startActivity(intent);
SplashActivity.this.finish();
}
},3000);
(2)使用动画持续时间,动画结束后进行跳转
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
iv =(ImageView)findViewById(R.id.splash_iv);
iv.setImageResource(R.mipmap.splash);
//设置透明度动画从无到有
AlphaAnimation alphaAnimation=new AlphaAnimation(0.0f,1.0f);
//设置动画持续时间
alphaAnimation.setDuration(3000);
//开始显示动画
iv.startAnimation(alphaAnimation);
//给动画设置监听,在动画结束的时候进行跳转
alphaAnimation.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
//动画开始时执行
Log.e("TAG", "onAnimationStart: " );
}
@Override
public void onAnimationEnd(Animation animation) {
//动画结束时执行
Log.e("TAG", "onAnimationEnd: " );
Intent intent=new Intent(SplashActivity.this,MainActivity.class);
startActivity(intent);
finish();
}
@Override
public void onAnimationRepeat(Animation animation) {
//动画重复播放时执行
Log.e("TAG", "onAnimationRepeat: " );
}
});
}
(3)利用Timer定时器实现,
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
iv =(ImageView)findViewById(R.id.splash_iv);
iv.setImageResource(R.mipmap.splash);
Timer timer=new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
Intent intent=new Intent(SplashActivity.this,MainActivity.class);
startActivity(intent);
finish();
}
},3000);
}
您可能感兴趣的文章:Android实现闪屏效果Android 自定义闪屏页广告倒计时view效果Android中使用Handler及Countdowntimer实现包含倒计时的闪屏页面Android应用闪屏页延迟跳转的三种写法Android中闪屏实现方法小结(普通闪屏、倒计时闪屏、倒计时+动画闪屏)Android切换至SurfaceView时闪屏(黑屏闪一下)以及黑屏移动问题的解决方法Android实现闪屏及注册和登录界面之间的切换效果android实现Splash闪屏效果示例Android 实现闪屏页和右上角的倒计时跳转实例代码Android实现应用程序的闪屏效果