Android,使用kotlin实现一个自定义View

我们使用kotlin实现Paint类的的一个使用案例。其核心代码如下
代码如下:

package com.example.mypoint

import android.content.Context
import android.graphics.*
import android.util.AttributeSet
import android.view.View

class PaintGradient(context: Context, attr: AttributeSet) :View(context,attr) {
    private var paint:Paint = Paint(Paint.FILTER_BITMAP_FLAG)
    init {
        paint.shader = LinearGradient(0f,0f,0f,height.toFloat(),Color.RED,Color.GREEN,Shader.TileMode.MIRROR)
    }

    override fun draw(canvas: Canvas?) {
        super.draw(canvas)
        canvas?.drawRect(10f,70f,100f,150f,paint);
    }
}
``
![在这里插入图片描述](https://img-blog.csdnimg.cn/33796b333a0d43fb8a38662dc53c728b.png)
`

你可能感兴趣的:(android,kotlin,android,studio)