溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android怎么實(shí)現(xiàn)RotateAnimation設(shè)置中心點(diǎn)旋轉(zhuǎn)動(dòng)畫效果

發(fā)布時(shí)間:2022-04-18 11:12:54 來(lái)源:億速云 閱讀:712 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“Android怎么實(shí)現(xiàn)RotateAnimation設(shè)置中心點(diǎn)旋轉(zhuǎn)動(dòng)畫效果”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Android怎么實(shí)現(xiàn)RotateAnimation設(shè)置中心點(diǎn)旋轉(zhuǎn)動(dòng)畫效果”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

在xml設(shè)置:

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
  android:duration="800" // 設(shè)置動(dòng)畫持續(xù)時(shí)間
  android:fromDegrees="0.0" // 設(shè)置動(dòng)畫開始時(shí)的角度
  android:interpolator="@android:anim/linear_interpolator"
  android:pivotX="50.0%" // 設(shè)置動(dòng)畫相對(duì)于控件的x坐標(biāo)的位置
  android:pivotY="50.0%" // 設(shè)置動(dòng)畫相對(duì)于控件的y坐標(biāo)的位置
  android:repeatCount="infinite" // 設(shè)置無(wú)線循環(huán)
  android:toDegrees="360.0" /> // 設(shè)置動(dòng)畫結(jié)束時(shí)的旋轉(zhuǎn)角度

在代碼中設(shè)置,主要是x,y的坐標(biāo)為中心點(diǎn):

public void rotateAnim() {
    Animation anim =new RotateAnimation(0f, 360f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
    anim.setFillAfter(true); // 設(shè)置保持動(dòng)畫最后的狀態(tài)
    anim.setDuration(3000); // 設(shè)置動(dòng)畫時(shí)間
    anim.setInterpolator(new AccelerateInterpolator()); // 設(shè)置插入器
    imageview.startAnimation(anim);
}

Android 動(dòng)畫之Interpolator插入器,比較簡(jiǎn)單和常用的:

(1)LinearInterpolator:動(dòng)畫從開始到結(jié)束,變化率是線性變化。
(2)AccelerateInterpolator:動(dòng)畫從開始到結(jié)束,變化率是一個(gè)加速的過(guò)程。
(3)DecelerateInterpolator:動(dòng)畫從開始到結(jié)束,變化率是一個(gè)減速的過(guò)程。
(4)CycleInterpolator:動(dòng)畫從開始到結(jié)束,變化率是循環(huán)給定次數(shù)的正弦曲線。
(5)AccelerateDecelerateInterpolator:動(dòng)畫從開始到結(jié)束,變化率是先加速后減速的過(guò)程。

讀到這里,這篇“Android怎么實(shí)現(xiàn)RotateAnimation設(shè)置中心點(diǎn)旋轉(zhuǎn)動(dòng)畫效果”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI