Hello! I draw on an imageview, but it is not possible to clear the image bevor I draw again on it. I thought, that imageview1.Invalidate clears the bitmap???
B4X:
imageview1.Bitmap=Pfeil
PfeilCanvas.Initialize(imageview)
DRectPfeil.Initialize(0,0,100,100)
Pfeilrotation(45)
B4X:
Sub Pfeilrotation(Kursrichtung)
PfeilCanvas.DrawBitmapRotated(Pfeil,Null,DRectPfeil,Kursrichtung)
imageview1.Invalidate
End Sub