当点击按钮时,如何执行 Canvas.drawText 事件?

当点击按钮时,如何执行绘制文本 drawText 事件?如何设置 setContentView(R.layout.main) 来查看按钮,下面的代码是关于绘制文本的。

 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  drawView = new DrawView(this); 
  setContentView(drawView); 
}
public DrawView(Context context) { 
  super(context); 
  textpaint.setColor(Color.WHITE);
}
public void onDraw(Canvas canvas) {
  canvas.drawText("Testing", 20, 55, textpaint);
}

DrawView 是从哪里继承的?为什么不使用一个简单的 xml 布局,在这个布局中你可以放置一个 TextView,并在 OnClickListener 中使用 setVisible。
示例代码:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.my_view);
    Button myButton = (Button) findViewById(R.id.my_button);
    final MySurfaceView surfaceView = (MySurfaceView) findViewById(R.id.mysurface);
    myButton.setOnClickListener(new OnClickListener() {
        @Override
        public boolean onClick(View v) {
            // here you should change the position and the text you want to write
            // like surfaceView.setCoordinates(x, y);
            // and surfaceView.setTextToDraw("myText");
            return true;
        }
    });
}

你需要自己创建 SurfaceView。
XML :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <org.mypackage.MySurfaceView android:id="@+id/mysurface"
        android:layout_width="300dp"
        android:layout_height="300dp" />
    <Button android:id="@+id/my_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Push it real good!" />
</LinearLayout>