我有一个自定义视图,它存储在XML布局中。 XML布局是我的活动视图。我可以从我的Activity中引用XML Layout中的Custom View,就像对任何Android Widget一样。然后我可以获得工作正常的onTouch监听器。我想要做的是引用我的自定义视图中的一个方法,这将使我能够在画布上绘制。我使用以下代码并没有成功。任何帮助将非常感激。 PS我的代码远不止这些,我刚刚列出了我认为最有必要的代码。
public class DrawView extends View {
public Canvas;
public Paint textPaint = new Paint()
public DrawView(Context context, AttributeSet attributeSet) {
super.DrawView(context attributeSet)
textPaint.setColor(getResources().getColor(R.color.text));
}
@Override
onDraw(Canvas canvas) {
mCanvas = canvas;
}
public void drawText() {
mCanvas.drawText("text", 100, 100, textPaint);
}
}
MainActivity:
public class MainActivity extends Activity {
DrawView mDrawView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sch_main);
//Get Handlers To DrawView
mDrawView = (DrawView) findViewById(R.id.draw);
//Get onTouch from DrawView
mDrawView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
}
else if (motionEvent.getAction() == MotionEvent.ACTION_MOVE) {
}
else if (motionEvent.getAction() == MotionEvent.ACTION_UP) {
mDrawView.drawText();
}
return false;
}
});
}
}
布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<example.DrawLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/draw"/>
</LinearLayout>
答案 0 :(得分:3)
你无法保持传递给Canvas
的{{1}}并随时画画,你只能在调用onDraw
时在画布上画画。
您应该重新考虑onDraw
的设计:包含存储应该绘制内容的数据的字段,允许方法更改这些字段,并根据这些字段在DrawView
内进行实际绘制。在您的简单情况下,您可以存储onDraw
字段以指示是否应该绘制文本(例如boolean
),有一个方法将其设置为isTextVisible
并将其绘制在true
内onDraw
1}}如果字段值为true
。
您可以选择通过调用invalidate()
强制重绘方法,以便更改立即生效。