美文网首页
动态绘制背景不同弧度的TextView

动态绘制背景不同弧度的TextView

作者: 一劍 | 来源:发表于2021-03-25 14:20 被阅读0次

先上实现代码:

/**
 * @desc 带有角度的 textview
 * @createtime: 2021/3/25
 */
public class CornerTextView extends AppCompatTextView {
    private String tag = "CornerTextView";
    private int mBackgroundColor = -1;
    private Paint bgPaint;

    private int leftTop;
    private int leftBottom;
    private  int rightTop;
    private int rightBottom;

    private Path path = new Path();
    private  RectF rect = new RectF();

    public CornerTextView(@NonNull Context context) {
        this(context, null);
    }

    public CornerTextView(@NonNull Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, -1);
    }

    public CornerTextView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        //初始化 画笔
        bgPaint = new Paint();
        bgPaint.setAntiAlias(true);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        //需要提前绘制背景色,要不然是覆盖在文字上面了
        drawCornerBg(canvas);
        super.onDraw(canvas);

    }

    //绘制带有角度的背景色
    private void drawCornerBg(Canvas canvas) {
        if (mBackgroundColor == -1) {
            return;
        }
        if (leftTop == 0 && leftBottom == 0 && rightBottom == 0 && rightTop == 0) {
            //只需要设置背景色即可
            setBackgroundColor(mBackgroundColor);
            return;
        }
        float[] outerR = new float[]{leftTop, leftTop, rightTop, rightTop, rightBottom, rightBottom, leftBottom, leftBottom};//左上,右上,右下,左下
        rect.left = 0;
        rect.right = getWidth();
        rect.top = 0;
        rect.bottom = getHeight();
        path.addRoundRect(rect, outerR, Path.Direction.CW);
        canvas.drawPath(path, bgPaint);
    }

    public void setCorner(int corner) {
        this.leftTop = corner;
        this.rightTop = corner;
        this.leftBottom = corner;
        this.rightBottom = corner;
    }

    public void setCorner(int leftTop, int rightTop, int leftBottom, int rightBottom) {
        this.leftTop = leftTop;
        this.rightTop = rightTop;
        this.leftBottom = leftBottom;
        this.rightBottom = rightBottom;
    }

    public void setBgBackGround(@ColorInt int color) {
        bgPaint.setColor(color);
        mBackgroundColor = color;
    }

    //动态设置好背景色和弧度后,调用刷新,重新绘制
    public void afterOkInvalidate() {
        invalidate();
    }
}

主要实现代码就一块:

根据角度,确认path路径,添加到绘制页面绘制即可,省却了通过shape 固定定义图形的尴尬

    //绘制带有角度的背景色
    private void drawCornerBg(Canvas canvas) {
        if (mBackgroundColor == -1) {
            return;
        }
        if (leftTop == 0 && leftBottom == 0 && rightBottom == 0 && rightTop == 0) {
            //只需要设置背景色即可
            setBackgroundColor(mBackgroundColor);
            return;
        }
        float[] outerR = new float[]{leftTop, leftTop, rightTop, rightTop, rightBottom, rightBottom, leftBottom, leftBottom};//左上,右上,右下,左下
        rect.left = 0;
        rect.right = getWidth();
        rect.top = 0;
        rect.bottom = getHeight();
        path.addRoundRect(rect, outerR, Path.Direction.CW);
        canvas.drawPath(path, bgPaint);
    }

若是想通过xml布局定义好背景色和弧度,可以自定义控件属性来现实。

代码使用示例:

        LinearLayout ll_container = findViewById(R.id.ll_container);

        CornerTextView cornerTextView = new CornerTextView(this);

        cornerTextView.setPadding(15,8,18,8);
        LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        params.bottomMargin=50;
        ll_container.addView(cornerTextView,params);


        cornerTextView.setText("感觉到很干净回到家");
        cornerTextView.setTextSize(16);
        cornerTextView.setTextColor(Color.parseColor("#00ff00"));
        cornerTextView.setBgBackGround(Color.parseColor("#ffff00"));
        cornerTextView.setCorner(35,10,10,35);
        cornerTextView.afterOkInvalidate();

示例图片:

image.png

相关文章

  • 动态绘制背景不同弧度的TextView

    先上实现代码: 主要实现代码就一块: 根据角度,确认path路径,添加到绘制页面绘制即可,省却了通过shape 固...

  • Canvas绘制时钟效果

    Cnavas绘制时钟 背景图的绘制(大圆、数字、小圆点),掌握基础知识:圆的绘制(arc方法),关于圆的弧度的计算...

  • textview 设置不同的背景颜色背景

    在做需求功能的时候 ,经常会遇到给textview 设置不同的背景颜色,有许多的方法

  • 如何在Android中制作胶囊形状按钮

    制作胶囊状按钮 核心是采用shape来进行绘制。可以作为View、TextView、各种Layout的背景(bac...

  • Android 梯形TextView

    背景 实现一个梯形的TextView。 一.图示效果 二.代码 三.要点分析 1.背景与文本内容的绘制 计算好四个...

  • SurfaceView探索

    诞生背景:TextView、Button和CheckBox等,它们都是将自己的UI绘制在宿主窗口的绘图表面之上,这...

  • Swift-绘制弧度

    iOS绘制弧度有两个函数,一个设置中心点另外一个是设置点到点, ` public func addArc(...

  • Color资源之color-selector

    根据状态不同,动态改变TextView、Button等View的字体颜色 在res下创建color目录,在colo...

  • Canvas入门3

    绘制弧度 基本概念角度:一个圆360度,一个半圆是180度弧度:一个圆2Π,一个半圆Π 角度转换弧度弧度 = 角度...

  • TextView设置行间距的时候动态计算高度

    TextView设置行间距的时候动态计算高度 textView 系统计算高度的方法 textView 设置行间距的...

网友评论

      本文标题:动态绘制背景不同弧度的TextView

      本文链接:https://www.haomeiwen.com/subject/vsolhltx.html