DrawView 继承自什么?为什么不使用一个简单的 xml 布局,在其中放置一个 TextView 并setVisible
在您的内部使用OnClickListener
示例代码:
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。如何做到这一点作为一个例子:http ://www.droidnova.com/playing-with-graphics-in-android-part-ii,160.html
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>