android 字体设置为中等粗细

原文
单一实现为

TextView tvTitle = findViewById(R.id.title);

TextPaint tp = tvTitle.getPaint();

tp.setStrokeWidth(1.0f);

tp.setStyle(Paint.Style.FILL_AND_STROKE);

setStrokeWidth()方法需要传入一个float值,数值越大,字体越粗,0.0f表示常规画笔的宽度,相当于默认情况。

全局实现为

继承TextView即可,在onDraw方法里面调用setStrokeWidth()方法即可,宽度自由可控,代码如下:

public class MediumBoldTextView extends TextView {
    private float mStrokeWidth = 0.9f;

    public MediumBoldTextView(Context context) {
        super(context);
    }

    public MediumBoldTextView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MediumBoldTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.MediumBold_TextView,defStyleAttr,0);
        mStrokeWidth = array.getFloat(R.styleable.MediumBold_TextView_strokeWidth,mStrokeWidth);

    }

    @Override
    protected void onDraw(Canvas canvas) {
        //获取当前控件的画笔
        TextPaint paint = getPaint();
        //设置画笔的描边宽度值
        paint.setStrokeWidth(mStrokeWidth);
        paint.setStyle(Paint.Style.FILL_AND_STROKE);
        super.onDraw(canvas);
    }
}

R.styleable.MediumBold_TextView在attrs.xml文件下:

image

这样就可以直接在布局中使用了,然后通过设置strokeWidth即可自由改变宽度。

你可能感兴趣的:(android 字体设置为中等粗细)