PathFragment.java 文件源码

java
阅读 22 收藏 0 点赞 0 评论 0

项目:AndroidAnimationDemo 作者:
@OnClick(R.id.btn_start)
public void onAction() {

    float start = mView.getY();
    if (start > 680f) {
        start = 0f;
        mView.setY(0f);
    }
    ObjectAnimator anim = ObjectAnimator.ofFloat(mView, "Y", start, mView.getY() + 180f);
    anim.setDuration(800);
    anim.setInterpolator(new CycleInterpolator(0.5f));
    anim.start();
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号