当前位置: 首页 > 编程笔记 >

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

商柏
2023-03-14
本文向大家介绍Android中闪屏实现方法小结(普通闪屏、倒计时闪屏、倒计时+动画闪屏),包括了Android中闪屏实现方法小结(普通闪屏、倒计时闪屏、倒计时+动画闪屏)的使用技巧和注意事项,需要的朋友参考一下

一、项目目录结构

二、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中闪屏实现方法小结(普通闪屏、倒计时闪屏、倒计时+动画闪屏),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对小牛知识库网站的支持!

 类似资料:
  • 我在主活动中有以下代码 可扩展置标语言 有时当我打开我的应用程序时,只会显示白屏。我已经使用AsyncTask将数据库从资产文件夹复制到设备,共享首选项将设置字体类型和大小。谁能帮我解决这个问题。谢谢你。 在提出问题之前,我已经阅读了以下问题 Android应用程序启动时的白色背景 android闪屏前几秒钟的白色背景 闪屏活动背景色

  • 我需要支持多个屏幕与应用程序。该应用程序是一个web应用程序,唯一的本地部分是闪屏。我有一组大小如下的图像:xlarge(xhdpi):640x960 large(hdpi):480x800 medium(mdpi):320x480 small(ldpi):240x320 在wvga854的情况下,我在屏幕的顶部/底部有空白。我通过创建drawable-normal-long-hdpi解决了这个问

  • 本文向大家介绍Android实现闪屏欢迎界面,包括了Android实现闪屏欢迎界面的使用技巧和注意事项,需要的朋友参考一下 闪屏:在打开App时,展示,持续数秒后,自动关闭,进入另外的一个界面,SplashActivity跳转到MainActivity Android中有三种实现方法 xml代码: (1)利用Handler对象的postDelayed方法可以实现,传递一个Runnable对象和一个

  • 我在Android上的闪屏有问题。在长时间的应用程序启动过程中会向用户显示闪屏,但activity背景始终为黑色。我的意思是背景位图(飞溅图像)是可见的,但背景是黑色而不是白色。我用的是透明的PNG图像。 我所拥有的: 带有透明背景的PNG闪屏图像 闪屏activity 问题:正如你所看到的,我使用theme.holo.light作为父主题,并且我在应用程序的其余部分中使用它。全息光使用白色背景。

  • 实现屏幕闪烁效果,有点类似拍照闪烁时的flash light。 [Code4App.com]

  • 我有一个Xamarin。表单应用程序,但这个问题只涉及Android。 我有一个闪屏,有一个标志和背景颜色,我想更新。我使用了一个spash主题样式,它指的是包含图像的xml。 主题: XML 然后我使用一个飞溅活动来使它工作,它完美地工作。 现在我想用一个图像作为背景,而不是颜色,所以我所做的是创建这个背景图像,上面有徽标,保存为一个图像,并将其用作启动屏幕。这造成了一些问题。 该图像在屏幕上显