为了账号安全,请及时绑定邮箱和手机立即绑定

ObjectAnimator

标签:
Android

透明度

alphaanimator = ObjectAnimator.ofFloat(textView, "alpha", 1, 0, 1);

alphaanimator.setDuration(3*1000);

alphaanimator.start();

旋转:

rotationanimator = ObjectAnimator.ofFloat(textView, "rotation", 0, 360, 0);

rotationanimator.setDuration(3*1000);

rotationanimator.start();

大小:

scaleanimator = ObjectAnimator.ofFloat(textView, "scaleX", 0.5f, 1);

scaleanimator.setDuration(3*1000);

scaleanimator.start();

背景色:

bgcoloranimator = ObjectAnimator.ofInt(textView, "BackgroundColor", 0xffff00ff, 0xff00ff22);

bgcoloranimator.setEvaluator(new ArgbEvaluator());

bgcoloranimator.setDuration(3*1000);

bgcoloranimator.start();

XML文件:

ObjectAnimator xmlAnimator = (ObjectAnimator) AnimatorInflater.loadAnimator(ObjectAnimatorActivity.this, R.animator.objectanimator);

xmlAnimator.setTarget(textView);

xmlAnimator.start();

<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" 

    android:propertyName="translationX"

    android:interpolator="@android:anim/accelerate_decelerate_interpolator"

    android:duration="3000"

    android:valueType="floatType"

    android:valueFrom="300"

    android:valueTo="-300"/>

propertyobjectanimat:

Property<TextView, Float> property = new Property<TextView, Float> (Float.class, "rotation") {

@Override

public void set(TextView object, Float value) {

object.setRotation(value.floatValue());

}

@Override

public Float get(TextView object) {

return object.getRotation();

}

};

ObjectAnimator propertyAnimator = ObjectAnimator.ofFloat(textView, property, 90, 360, 180, 0);

propertyAnimator.setDuration(3*1000);

propertyAnimator.start();

break;

原文链接:http://www.apkbus.com/blog-880881-63287.html

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消