在UI这一块,谈到自定义,就离不开画笔和画布的使用话题,在自定义控件的时候,为了做出炫酷的效果,我们往往会使用画笔和画布,那么这里我们就先来看看画笔的使用吧 简单使用例子 自定义一个View public class PaintView extends View { private Paint mPaint; public PaintView(Context context, @Nullable AttributeSet attrs) { super(context, attrs); mPain…