android res/anim 定义补间动画文件

[size=medium][b]1.在res文件夹下,创建一个anim的子文件夹[/b][/size]

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:duration="600"
android:repeatMode="restart"
android:repeatCount="infinite"
android:interpolator="@android:anim/cycle_interpolator"/>
</set>

[b]anim/rotate(旋转动画)[/b]

interpolator:动画插入器

accelerate_decelerate_interpolator:加速-减速

accelerate_interpolator:加速

decelerate_interpolator:减速

fromDegrees:开始的角度

toDegrees:结束的角度

[color=red]pivotX,privotY:旋转中心的坐标(可以用百分比也可以用数字)[/color]

[b]anim/translate(移动动画)[/b]

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="2000"
android:fromXDelta="30"
android:fromYDelta="30"
android:toXDelta="-80"
android:toYDelta="300" />
</set>

[color=red]fromXDelta,fromYDelta:开始时候左上角的坐标[/color]
toXDelta,toYDelta:结束时候左上角的坐标

[b]anim/scale(伸缩动画)[/b]

<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
android:duration="2000"
android:fromXScale="0.0"
android:fromYScale="0.0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:pivotX="00%"
android:pivotY="00%"
android:toXScale="1.4"
android:toYScale="1.4" />
</set>

interpolator:动画插入器

accelerate_decelerate_interpolator:加速-减速

accelerate_interpolator:加速

decelerate_interpolator:减速

fromXScale,fromYScale:开始X和Y的大小(0为缩小到没有)

toXScale,toYScale:结束X和Y的大小(1为没有变化)

[color=red]pivotX,privotY:左上角的坐标(可以用百分比也可以用数字)[/color]

[b]anim/alpha.xml(渐变动画)[/b]

<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<alpha
android:duration="2000"
android:fromAlpha="0.1"
android:toAlpha="1.0" />
</set>

duration:动画的持续时间(单位是毫秒)

fromAlpha:开始的透明度

toAlpha:结束的透明度

[color=red]透明度0.0是完全透明,1.0是不透明[/color]


[size=medium][b]2.接着在Activity创建一个Animation类,然后使用AnimationUtils类加载动画xml[/b][/size]

// 动画对象
Animation animFadein;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fadein);

txtMessage = (TextView) findViewById(R.id.txtMessage);

// 加载动画
animFadein = AnimationUtils.loadAnimation(getApplicationContext(),
R.anim.fade_in);
// 对image或view进行动画演示
txtMessage.startAnimation(animFadein);


[size=medium][b]3.设置动画监听器[/b][/size]
如果[color=red]你要监听动画的事件[/color],如开始,结束等,你需要实现[b]AnimationListener[/b]监听器,重写以下方法。

[color=red]onAnimationEnd(Animation animation) -- 当动画结束时调用
onAnimationRepeat(Animation animation) -- 当动画重复时调用
onAniamtionStart(Animation animation) -- 当动画启动时调用[/color]


import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.AnimationUtils;
import android.widget.Toast;

public class AlphaActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
View view=View.inflate(this, R.layout.activity_alpha, null);
setContentView(view);
Animation animation=AnimationUtils.loadAnimation(this, R.anim.alpha);

view.startAnimation(animation);
animation.setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation arg0) {}

@Override
public void onAnimationRepeat(Animation arg0) {}

@Override
public void onAnimationEnd(Animation arg0) {
Toast.makeText(AlphaActivity.this, "动画完成", Toast.LENGTH_SHORT).show();
}
});
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值