這篇文章將為大家詳細(xì)講解有關(guān)Android如何實(shí)現(xiàn)應(yīng)用程序的閃屏效果,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了烏翠免費(fèi)建站歡迎大家使用!
效果圖:
demo框架如下:
1、閃屏的布局如下:其實(shí)就是一張背景圖
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) { // // } // /** 動(dòng)畫結(jié)束執(zhí)行的方法*/ // @Override // public void onAnimationEnd(Animation animation) { // redirectTo(); // } // }); /** 方式二*/ new Handler().postDelayed(new Runnable() { @Override public void run() { redirectTo(); } }, 3000); } /** * 即將跳轉(zhuǎn)的頁面 */ public void redirectTo(){ Intent intent=new Intent(WelcomeActivity.this, MainActivity.class); startActivity(intent); finish(); } }
這樣一個(gè)簡單的閃屏效果就實(shí)現(xiàn)了呢,而且閃屏效果的實(shí)現(xiàn)有很多都方式,思路就是讓你開始的節(jié)面等待個(gè)幾秒鐘,然后顯示。
關(guān)于“Android如何實(shí)現(xiàn)應(yīng)用程序的閃屏效果”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。