欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android实现应用程序的闪屏效果

时间:2020-11-11 11:00:04|栏目:Android代码|点击:

每个应用程序都会有闪屏页面的,那么接下来就看看闪屏页面是如何实现的?

效果图:


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代码

下一篇:Android 基于Socket的聊天应用实例(二)

本文标题:Android实现应用程序的闪屏效果

本文地址:http://www.codeinn.net/misctech/21290.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有