您好,登錄后才能下訂單哦!
這篇文章主要介紹Android中如何設置TextView漸變顏色和方向及動畫效果,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
之前倉庫發布在 jcenter,但是因為它即將不可用,近期已完成遷移。建議大家使用 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中定義 | 漸變顏色的起始值(默認值:#6200EE) |
gradient_endColor | 值在color.xml中定義 | 漸變顏色的結束值(默認值:#03DAC5) |
gradient_direction | leftToRight:從左向右,topToBottom:從上向下 | 漸變顏色的方向(默認值:leftToRight) |
gradient_animate | true or false | 漸變顏色的動畫開關(默認值:false) |
gradient_speed | slow、normal、fast | 漸變顏色的動畫速度(默認值: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中如何設置TextView漸變顏色和方向及動畫效果”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。