super.onDraw() 这是自定义绘制最基本的形态:继承 View 类,在 onDraw() 中完全自定义它的绘制。 @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); //绘制代码 ... }