第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在旋轉(zhuǎn)時(shí)更改 AppCompatButton 的背景?

如何在旋轉(zhuǎn)時(shí)更改 AppCompatButton 的背景?

繁花如伊 2023-05-10 17:09:07
我正在使用 RotateAnimation 旋轉(zhuǎn) AppCompatButton,用作工具欄按鈕,我想在旋轉(zhuǎn)時(shí)更改其背景。到目前為止,我沒有找到任何有用的主題。這是我的代碼:AppCompatButton mBtn = (AppCompatButton) view.findViewById(R.id.search_btn);         Animation mRotateAnimation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.rotation); mBtn.setAnimation(mRotateAnimation); mBtn.startAnimation(mRotateAnimation);旋轉(zhuǎn).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" />我想在動(dòng)畫的開始和結(jié)束之間獲得平滑的背景變化。任何有用的資源鏈接或代碼都會(huì)很棒。感謝你們!
查看完整描述

1 回答

?
繁星淼淼

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超11個(gè)贊

您應(yīng)該ValueAnimation在視圖中添加另一個(gè)。


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();


查看完整回答
反對(duì) 回復(fù) 2023-05-10
  • 1 回答
  • 0 關(guān)注
  • 191 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)