亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何使用Kotlin實現文字漸變TextView

發布時間:2020-07-29 14:47:00 來源:億速云 閱讀:254 作者:小豬 欄目:移動開發

這篇文章主要為大家展示了如何使用Kotlin實現文字漸變TextView,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

實現效果:

如何使用Kotlin實現文字漸變TextView

實現代碼:

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)
    }
  }

  /**
   * 復寫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):漸變起始點坐標
      //(x1,y1):漸變結束點坐標
      //color0:漸變開始點顏色,16進制的顏色表示,必須要帶有透明度
      //color1:漸變結束顏色
      //colors:漸變數組
      //positions:位置數組,position的取值范圍[0,1],作用是指定某個位置的顏色值,如果傳null,漸變就線性變化。
      //tile:用于指定控件區域大于指定的漸變區域時,空白區域的顏色填充方法。
      mLinearGradient = LinearGradient(
        0f
        , 0f
        , mMeasureWidth.toFloat()
        , 0f
        , intArrayOf(mStartColor, mEndColor)
        , null
        , Shader.TileMode.CLAMP
      )
      mPaint?.shader = mLinearGradient
      mTextMatrix = Matrix()
    }
  }
}

attr.xml 引用

<declare-styleable name="GradientTextView">
  <attr name="startColor" format="color"/>
  <attr name="endColor" format="color"/>
</declare-styleable>

引用:

<前綴.GradientTextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:startColor="@color/colorPrimary"
    app:endColor="@color/colorAccent"
    />

以上就是關于如何使用Kotlin實現文字漸變TextView的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

仪征市| 武隆县| 泰宁县| 台南县| 兴隆县| 太和县| 进贤县| 安溪县| 周宁县| 中超| 元谋县| 石屏县| 汉川市| 揭东县| 林甸县| 彭阳县| 西峡县| 武功县| 连城县| 名山县| 兴安盟| 肇庆市| 册亨县| 抚宁县| 句容市| 新密市| 锦屏县| 盐津县| 澳门| 西城区| 利川市| 嘉黎县| 育儿| 青铜峡市| 永靖县| 孟津县| 台北县| 苍山县| 忻城县| 鹰潭市| 临猗县|