這篇文章主要為大家展示了如何使用Kotlin實(shí)現(xiàn)文字漸變TextView,內(nèi)容簡(jiǎn)而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會(huì)有收獲的,下面讓小編帶大家一起來(lái)看看吧。
創(chuàng)新互聯(lián)建站是專(zhuān)業(yè)的嵐山網(wǎng)站建設(shè)公司,嵐山接單;提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行嵐山網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
實(shí)現(xiàn)效果:
實(shí)現(xiàn)代碼:
import android.content.Context import android.graphics.* import android.support.annotation.ColorInt import android.support.annotation.ColorRes import android.text.TextPaint import android.util.AttributeSet import android.widget.TextView import com.ans.utilactivity.R class GradientTextView @JvmOverloads constructor( context: Context?, attrs: AttributeSet? = null ) : TextView(context, attrs) { private var mPaint: TextPaint? = null private var mLinearGradient: LinearGradient? = null private var mMeasureWidth = 0 private var mTextMatrix: Matrix? = null @ColorInt private var mStartColor: Int = 0xFF333333.toInt() @ColorInt private var mEndColor: Int = 0xFF333333.toInt() init { if (attrs != null) { val attrArray = getContext().obtainStyledAttributes(attrs, R.styleable.GradientTextView) mStartColor = attrArray.getColor(R.styleable.GradientTextView_startColor, mStartColor) mEndColor = attrArray.getColor(R.styleable.GradientTextView_endColor, mEndColor) } } /** * 復(fù)寫(xiě)onSizeChanged方法 * */ override fun onSizeChanged(w: Int, h: Int, oldw: Int, oldh: Int) { super.onSizeChanged(w, h, oldw, oldh) mMeasureWidth = measuredWidth if (mMeasureWidth > 0) { mPaint = paint //(x0,y0):漸變起始點(diǎn)坐標(biāo) //(x1,y1):漸變結(jié)束點(diǎn)坐標(biāo) //color0:漸變開(kāi)始點(diǎn)顏色,16進(jìn)制的顏色表示,必須要帶有透明度 //color1:漸變結(jié)束顏色 //colors:漸變數(shù)組 //positions:位置數(shù)組,position的取值范圍[0,1],作用是指定某個(gè)位置的顏色值,如果傳null,漸變就線性變化。 //tile:用于指定控件區(qū)域大于指定的漸變區(qū)域時(shí),空白區(qū)域的顏色填充方法。 mLinearGradient = LinearGradient( 0f , 0f , mMeasureWidth.toFloat() , 0f , intArrayOf(mStartColor, mEndColor) , null , Shader.TileMode.CLAMP ) mPaint?.shader = mLinearGradient mTextMatrix = Matrix() } } }
attr.xml 引用
引用:
<前綴.GradientTextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:startColor="@color/colorPrimary" app:endColor="@color/colorAccent" />
以上就是關(guān)于如何使用Kotlin實(shí)現(xiàn)文字漸變TextView的內(nèi)容,如果你們有學(xué)習(xí)到知識(shí)或者技能,可以把它分享出去讓更多的人看到。