要重写 Android 的 onDraw 方法,首先需要在自定义 View 类中重写该方法。以下是重写 onDraw 方法的步骤:
public class CustomView extends View {
public CustomView(Context context) {
super(context);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// 在这里进行绘制操作
}
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Paint paint = new Paint();
paint.setColor(Color.RED);
canvas.drawRect(0, 0, getWidth(), getHeight(), paint);
paint.setColor(Color.BLUE);
canvas.drawText("Hello, World!", 100, 100, paint);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
CustomView customView = new CustomView(this);
setContentView(customView);
}
通过以上步骤,就可以成功重写 Android 的 onDraw 方法,并实现自定义的绘制效果。可以根据具体需求在 onDraw 方法中进行相应的绘制操作。