您好,登錄后才能下訂單哦!
這篇文章主要介紹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'
<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_direction | leftToRight:從左向右,topToBottom:從上向下 | 漸變顏色的方向(默認(rèn)值:leftToRight) |
gradient_animate | true or false | 漸變顏色的動畫開關(guān)(默認(rèn)值:false) |
gradient_speed | slow、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" />
gradientTextView.apply { translateAnimate = !translateAnimate invalidate() }
以上是“Android中如何設(shè)置TextView漸變顏色和方向及動畫效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。