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

如何在旋转时更改 AppCompatButton 的背景?

如何在旋转时更改 AppCompatButton 的背景?

繁花如伊 2023-05-10 17:09:07
我正在使用 RotateAnimation 旋转 AppCompatButton,用作工具栏按钮,我想在旋转时更改其背景。到目前为止,我没有找到任何有用的主题。这是我的代码:AppCompatButton mBtn = (AppCompatButton) view.findViewById(R.id.search_btn);         Animation mRotateAnimation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.rotation); mBtn.setAnimation(mRotateAnimation); mBtn.startAnimation(mRotateAnimation);旋转.xml:<rotate     xmlns:android="http://schemas.android.com/apk/res/android"     android:fromDegrees="0"     android:toDegrees="360"     android:pivotX="50%"     android:pivotY="50%"     android:repeatCount="0"     android:duration="600" />我想在动画的开始和结束之间获得平滑的背景变化。任何有用的资源链接或代码都会很棒。感谢你们!
查看完整描述

1 回答

?
繁星淼淼

TA贡献1775条经验 获得超11个赞

您应该ValueAnimation在视图中添加另一个。


AppCompatButton mBtn = (AppCompatButton) view.findViewById(R.id.search_btn);

        Animation mRotateAnimation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.rotation);

mBtn.setAnimation(mRotateAnimation);

mBtn.startAnimation(mRotateAnimation);


int colorFrom = getResources().getColor(R.color.red);

int colorTo = getResources().getColor(R.color.blue);

ValueAnimator colorAnimation = ValueAnimator.ofObject(new ArgbEvaluator(), colorFrom, colorTo);

colorAnimation.setDuration(600);

colorAnimation.addUpdateListener(new AnimatorUpdateListener() {


    @Override

    public void onAnimationUpdate(ValueAnimator animator) {

        mBtn.setBackgroundColor((int) animator.getAnimatedValue());

    }


});

colorAnimation.start();


查看完整回答
反对 回复 2023-05-10
  • 1 回答
  • 0 关注
  • 114 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信