thinking for android's animation
Posted gentspy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinking for android's animation相关的知识,希望对你有一定的参考价值。
*Property Animation
ObjectAnimator anim=ObjectAnimator.ofFloat((textView, "asdfasdf", 0F, 1F);
anim.setDuration(2000);
anim.addUpdateListener(new AnimatorUpdateListener() {
//当ObjectAnimator需要更新TextView的属性时
public void onAnimationUpdate(ValueAnimator animation) {
Float value=(Float)animation.getAnimatedValue();
textView.setAlpha(value);
textView.setScaleX(value);
textView.setScaleY(value);
}
});
anim.start();
*Frame Animation 帧动画
1>构建AnimationDrawable对象。
anim=new AnimationDrawable();
2>向AnimationDrawable对象中添加帧
anim.addFrame()
3>调用view.setBackground(anim)
4>anim.start()
以上是关于thinking for android's animation的主要内容,如果未能解决你的问题,请参考以下文章
怎么用thinkphp5 config助手函数设置配置参数, 也use think\Config;了;
[20-05-23][Thinking in Java 39]Java Container 11 - PriorityQueue