Android 启动程序时动画效果

本文介绍如何在Android应用中实现开屏动画效果。通过新建XML布局文件并添加ImageView组件来加载图片,然后创建一个Activity实现渐变动画效果。文章提供了一个具体的代码示例,包括设置动画时间、监听动画结束并跳转页面等。

1、当你打开一个应用程序时,总会看到前面有一个加载动画页面,下面我们就看看怎么来实现 

2、新建一个.xml 文件,添加一个ImageView 组件,该组件用来加载图片

<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"
    tools:context=".MainActivity" >

 	<ImageView 
 	    android:id="@+id/welcome_img"
 	    android:layout_width="match_parent"
 	    android:layout_height="match_parent"
 	    />

</RelativeLayout>

3、创建一个Activity,用来启动与实现渐变效果

package com.example.activity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.widget.ImageView;

public class MainActivity extends Activity {
    private ImageView welcomeImg = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        welcomeImg = (ImageView) this.findViewById(R.id.welcome_img);
        AlphaAnimation anima = new AlphaAnimation(0.3f, 1.0f);
        anima.setDuration(3000);// 设置动画显示时间
        welcomeImg.startAnimation(anima);
        anima.setAnimationListener(new AnimationImpl());

    }

    private class AnimationImpl implements AnimationListener {

        @Override
        public void onAnimationStart(Animation animation) {
            welcomeImg.setBackgroundResource(R.drawable.welcome);
        }

        @Override
        public void onAnimationEnd(Animation animation) {
            skip(); // 动画结束后跳转到别的页面
        }

        @Override
        public void onAnimationRepeat(Animation animation) {

        }

    }

    private void skip() {
        startActivity(new Intent(this, OtherActivity.class));
        finish();
    }
}
转自http://blog.youkuaiyun.com/nmsoftklb/article/details/12943483 本人已经验证,可以实现一张图片的开屏动画效果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值