每个应用程序都会有闪屏页面的,那么接下来就看看闪屏页面是如何实现的?
效果图:
demo框架如下:
1、闪屏的布局如下:其实就是一张背景图
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_app"
android:orientation="vertical" >
</LinearLayout>
2、WelcomeActivity.java的代码如下:
package com.example.bamboo_splash;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
public class WelcomeActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_welcome);
/** 方式一*/
// AlphaAnimation animation=new AlphaAnimation(0.3f, 1f);
// animation.setDuration(3000);
// animation.setAnimationListener(new AnimationListener() {
//
// @Override
// public void onAnimationStart(Animation animation) {
//
// }
//
// @Override
// public void onAnimationRepeat(Animation animation) {
//
// }
// /** 动画结束执行的方法*/
// @Override
// public void onAnimationEnd(Animation animation) {
// redirectTo();
// }
// });
/** 方式二*/
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
redirectTo();
}
}, 3000);
}
/**
* 即将跳转的页面
*/
public void redirectTo(){
Intent intent=new Intent(WelcomeActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
}
这样一个简单的闪屏效果就实现了呢,而且闪屏效果的实现有很多都方式,思路就是让你开始的节面等待个几秒钟,然后显示。
您可能感兴趣的文章:Android实现闪屏效果Android 自定义闪屏页广告倒计时view效果Android中使用Handler及Countdowntimer实现包含倒计时的闪屏页面Android应用闪屏页延迟跳转的三种写法Android实现闪屏欢迎界面Android中闪屏实现方法小结(普通闪屏、倒计时闪屏、倒计时+动画闪屏)Android切换至SurfaceView时闪屏(黑屏闪一下)以及黑屏移动问题的解决方法Android实现闪屏及注册和登录界面之间的切换效果android实现Splash闪屏效果示例Android 实现闪屏页和右上角的倒计时跳转实例代码