Android中闪屏实现方法小结(普通闪屏、倒计时闪屏、倒计时+动画闪屏)

所属分类: 软件编程 / Android 阅读数: 20
收藏 0 赞 0 分享

一、项目目录结构

二、activity_main.xml代码

<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" 
  android:paddingBottom="@dimen/activity_vertical_margin" 
  android:paddingLeft="@dimen/activity_horizontal_margin" 
  android:paddingRight="@dimen/activity_horizontal_margin" 
  android:paddingTop="@dimen/activity_vertical_margin" 
  tools:context="com.zgs.SplashScreenByXml.MainActivity" > 
  <TextView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="主页面" /> 
</RelativeLayout> 

三、activity_splashscreen.xml代码

<?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/splash" 
  android:orientation="vertical"  
  android:id="@+id/ll_splashActivity"> 
  <TextView 
    android:id="@+id/tv_countDown" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="end" 
    android:layout_marginEnd="20dp" 
    android:layout_marginTop="20dp" 
    android:textColor="@android:color/white" 
    android:textSize="20sp" /> 
</LinearLayout> 

四、SplashScreenActiviy.java代码

package com.zgs.SplashScreenByXml; 
import android.app.Activity; 
import android.content.Intent; 
import android.os.Bundle; 
import android.os.CountDownTimer; 
import android.os.Handler; 
import android.view.View; 
import android.view.Window; 
import android.view.WindowManager; 
import android.view.animation.Animation; 
import android.view.animation.Animation.AnimationListener; 
import android.view.animation.TranslateAnimation; 
import android.widget.LinearLayout; 
import android.widget.TextView; 
import com.zgs.CommonlySplashScreen.R; 
public class SplashScreenActiviy extends Activity { 
  private TextView tv_countDown; 
  private LinearLayout ll_splashActivity; 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    // 通过下面两行代码也可实现全屏无标题栏显示activity 
    // getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 
    // this.requestWindowFeature(Window.FEATURE_NO_TITLE); 
    setContentView(R.layout.activity_splashscreen); 
    tv_countDown = (TextView) findViewById(R.id.tv_countDown); 
    ll_splashActivity = (LinearLayout) findViewById(R.id.ll_splashActivity); 
    /******************************************************************************** 
     * 
     * 普通闪屏实现方式 
     * 
     * ******************************************************************************/ 
    /*new Handler().postDelayed(new Runnable() { 
      @Override 
      public void run() { 
        Intent intent = new Intent(getApplicationContext(), MainActivity.class); 
        startActivity(intent); 
        finish(); 
      } 
    }, 1000*4);*/ 
    /******************************************************************************** 
     * 
     * 倒计时闪屏实现方式 
     * 
     * ******************************************************************************/ 
    /*MyCountDownTimer mc = new MyCountDownTimer(4000, 1000); 
    mc.start(); 
    new Handler().postDelayed(new Runnable() { 
      @Override 
      public void run() { 
        Intent intent = new Intent(getApplicationContext(), MainActivity.class); 
        startActivity(intent); 
        finish(); 
      } 
    }, 1000*4);*/ 
    /******************************************************************************** 
     * 
     * 倒计时+动画闪屏实现方式 
     * 
     * ******************************************************************************/ 
    MyCountDownTimer mc = new MyCountDownTimer(4000, 1000);  
    mc.start(); 
    new Handler().postDelayed(new Runnable() { 
      @Override 
      public void run() { 
        //左移动画 
        TranslateAnimation ta = new TranslateAnimation(Animation.RELATIVE_TO_PARENT, 0, Animation.RELATIVE_TO_PARENT, -1, Animation.RELATIVE_TO_PARENT, 0, Animation.RELATIVE_TO_PARENT, 0);  
        ta.setDuration(2000); //设置动画执行的时间 
        ta.setFillAfter(true);//当动画结束后 动画停留在结束位置,然后等启动主界面后将其销毁 
        ll_splashActivity.startAnimation(ta); 
        ta.setAnimationListener(new AnimationListener() { 
          @Override 
          public void onAnimationStart(Animation arg0) { 
          } 
          @Override 
          public void onAnimationRepeat(Animation arg0) { 
          } 
          @Override 
          public void onAnimationEnd(Animation arg0) { 
            Intent intent = new Intent(getApplicationContext(), MainActivity.class); 
            startActivity(intent); 
            finish(); 
          } 
        }); 
      } 
    }, 1000*4); 
  } 
  class MyCountDownTimer extends CountDownTimer {  
    //millisInFuture:倒计时的总数,单位毫秒 
    //例如 millisInFuture=1000;表示1秒 
    //countDownInterval:表示间隔多少毫秒,调用一次onTick方法() 
    //例如: countDownInterval =1000;表示每1000毫秒调用一次onTick() 
    public MyCountDownTimer(long millisInFuture, long countDownInterval) {  
      super(millisInFuture, countDownInterval);  
    }  
    public void onFinish() {  
      tv_countDown.setText("开始跳转……"); 
    }  
    public void onTick(long millisUntilFinished) {  
      tv_countDown.setText("倒计时(" + millisUntilFinished / 1000 + ")"); 
    }  
  } 
} 

五、MainActivity.java代码

package com.zgs.SplashScreenByXml; 
import android.app.Activity; 
import android.os.Bundle; 
import com.zgs.CommonlySplashScreen.R; 
public class MainActivity extends Activity { 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    //为了让闪屏结束后更自然的过度到主界面,去除主界面的启动动画,将下面函数的第一个参数设为0即可 
    overridePendingTransition(0, 0); 
  } 
} 

六、操作演示

以上所述是小编给大家介绍的Android中闪屏实现方法小结(普通闪屏、倒计时闪屏、倒计时+动画闪屏),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

更多精彩内容其他人还在看

Android实现悬浮窗体效果

这篇文章主要为大家详细介绍了Android实现悬浮窗体效果,显示悬浮窗口,窗口可以拖动,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Andriod studio 打包aar 的方法

这篇文章主要介绍了Andriod studio 打包aar的方法,非常不错,具有一定的参考借鉴价值 ,需要的朋友可以参考下
收藏 0 赞 0 分享

Android加载loading对话框的功能及实例代码(不退出沉浸式效果)

这篇文章主要介绍了Android加载loading对话框的功能及实例代码,不退出沉浸式效果,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中LayoutInflater.inflater()的正确打开方式

这篇文章主要给大家介绍了关于Android中LayoutInflater.inflater()的正确打开方式,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Delphi在Android下使用Java库的方法

这篇文章主要介绍了Delphi在Android下使用Java库的方法,本文以Android的USB串口通讯库为例,给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Retrofit2日志拦截器的使用

这篇文章主要介绍了Retrofit2日志拦截器的使用,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android创建外部lib库及自定义View的图文教程

这篇文章主要给大家介绍了关于Android创建外部lib库及自定义View的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序失败的一些事小结

这篇文章主要给大家介绍了关于Android分享微信小程序失败一些事,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序技巧之图片优化

这篇文章主要给大家介绍了关于Android分享微信小程序技巧之图片优化的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android Viewpager实现无限循环轮播图

这篇文章主要为大家详细介绍了Android Viewpager实现无限循环轮播图,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享
查看更多