Invalidate()不会在Xamarin.Android中调用OnDraw()

少年乘勇气,百战过乌孙。这篇文章主要讲述Invalidate()不会在Xamarin.Android中调用OnDraw()相关的知识,希望能为你提供帮助。
在我的代码中,我使用onTouchEvent()根据我的触摸向下/向上绘制不同的图像。
下面是我的代码示例。
当我在touch_Down中执行Invalidate()时,它不会立即调用onDraw(),而是在touch_Up完成后调用它。所以我总是在OnDraw()之后看到我的touch_Up图像。
请帮忙。

private void MyView_Touch(object sender, TouchEventArgs e) { if (e.Event.Action == MotionEventActions.Down) { SetSelectedPart(Resource.Drawable.Green); } else if (e.Event.Action == MotionEventActions.Up) { SetSelectedPart(Resource.Drawable.Blue); } }private void SetSelectedPart(int resourceId) { myDrawable = Context.Resources.GetDrawable(resourceId, null); Invalidate(); }protected override void OnDraw(Canvas canvas) { myDrawable.Draw(canvas); }

答案我已经测试了你的代码。调用OnDraw方法。我认为没有显示图片的原因是你没有使用SetBounds()方法。
【Invalidate()不会在Xamarin.Android中调用OnDraw()】例如:
protected override void OnDraw(Canvas canvas) { if (myDrawable != null) { myDrawable.SetBounds(0, 0, canvas.Width, canvas.Height); myDrawable.Draw(canvas); } }


    推荐阅读