溫馨提示×

溫馨提示×

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

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

Android中如何設(shè)置TextView漸變顏色和方向及動畫效果

發(fā)布時間:2021-11-06 17:23:31 來源:億速云 閱讀:619 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹Android中如何設(shè)置TextView漸變顏色和方向及動畫效果,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

添加依賴

之前倉庫發(fā)布在 jcenter,但是因?yàn)樗磳⒉豢捎?,近期已完成遷移。建議大家使用 mavenCentral 的配置。

  • 使用 jcenter

implementation 'com.williamyang:gradienttext:1.0.1'
  • 使用 mavenCentral

buildscript {
    repositories {
        mavenCentral()
    }
}

implementation 'io.github.weilianyang:gradienttext:1.0.1'

效果預(yù)覽:

Android中如何設(shè)置TextView漸變顏色和方向及動畫效果

Android中如何設(shè)置TextView漸變顏色和方向及動畫效果

一、控件樣式

<declare-styleable name="GradientTextView">
    <attr name="gradient_startColor" format="reference|color" />
    <attr name="gradient_endColor" format="reference|color" />
    <attr name="gradient_direction" format="enum">
        <enum name="leftToRight" value="1" />
        <enum name="topToBottom" value="2" />
    </attr>
    <attr name="gradient_animate" format="boolean" />
    <attr name="gradient_speed" format="enum">
        <enum name="slow" value="20" />
        <enum name="normal" value="10" />
        <enum name="fast" value="5" />
    </attr>
</declare-styleable>

二、屬性介紹

屬性可選值作用
gradient_startColor值在color.xml中定義漸變顏色的起始值(默認(rèn)值:#6200EE)
gradient_endColor值在color.xml中定義漸變顏色的結(jié)束值(默認(rèn)值:#03DAC5)
gradient_directionleftToRight:從左向右,topToBottom:從上向下漸變顏色的方向(默認(rèn)值:leftToRight)
gradient_animatetrue or false漸變顏色的動畫開關(guān)(默認(rèn)值:false)
gradient_speedslow、normal、fast漸變顏色的動畫速度(默認(rèn)值:normal)

三、控件在布局中使用

<com.william.gradient.GradientTextView
    android:id="@+id/gradientTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:text="@string/leftToRight_GradientTextView"
    android:textSize="24sp"
    app:gradient_animate="true"
    app:gradient_direction="leftToRight"
    app:gradient_speed="normal" />

四、在代碼中控制動畫開關(guān)

gradientTextView.apply {
    translateAnimate = !translateAnimate
    invalidate()
}

以上是“Android中如何設(shè)置TextView漸變顏色和方向及動畫效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI