gpt4 book ai didi

android - 自定义动画的动画监听器

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:16:56 28 4
gpt4 key购买 nike

我已经使用 fragmentTansaction.setCustomAnimation(in,out) 为 fragment 事务设置自定义动画。我想知道动画的开始和结束并触发一些相应的 Action 。我怎样才能做到这一点?是否可以设置一些监听器?

最佳答案

您可以在 onStart() 中为 getDecorView() 使用动画

   @Override
public void onStart() {
super.onStart();

if (getDialog().getWindow().getDecorView()) {
ObjectAnimator objectAnimator = ObjectAnimator.ofPropertyValuesHolder(getDialog().getWindow().getDecorView(),
PropertyValuesHolder.ofFloat(View.Y, 0, 1000));
objectAnimator.setDuration(1000);
objectAnimator.addListener(new Animator.AnimatorListener() {
@Override
public void onAnimationStart(Animator animation) {

}

@Override
public void onAnimationEnd(Animator animation) {

}

@Override
public void onAnimationCancel(Animator animation) {

}

@Override
public void onAnimationRepeat(Animator animation) {

}
});
objectAnimator.start();
}

}

关于android - 自定义动画的动画监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12001770/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com