时间:2021-05-19
实现效果:
实现代码:
import android.content.Contextimport android.graphics.*import android.support.annotation.ColorIntimport android.support.annotation.ColorResimport android.text.TextPaintimport android.util.AttributeSetimport android.widget.TextViewimport com.ans.utilactivity.Rclass 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的文章就介绍到这了,更多相关Kotlin文字渐变TextView内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文所述实例为Dlephi实现的窗口渐变文字效果,文字可以不停的变化,颜色由浅入深,由清淅变模糊,文字渐变的时间可在代码中自己调整。主要实现代码如下:unitU
要用TextView使用渐变色,那我们就必须要了解LinearGradient(线性渐变)的用法。LinearGradient的参数解释LinearGradie
如何实现使用TextView的DrawableLeft使图片和文字居中显示呢???代码如下:1.首先自定义一个类,继承TextViewpackagecom.te
下面一段代码给大家分享Android自定义TextView实现滑动解锁高亮文字效果,具体代码如下所示:publicclassHightLightTextView
前言Android的TextView只能设置整个TextView的动画,而不能设置每个文字的动画。即使是使用TextSwitcher,也很难实现我想要的效果。所