Sub AppStart (Form1 As Form, Args() As String)
Form1.Show
Dim ivSize As Int = 300
Dim iv As ImageView
iv.Initialize("")
Form1.RootPane.AddNode(iv, 0, 0, ivSize, ivSize)
Dim bc As BitmapCreator
bc.Initialize(ivSize, ivSize)
bc.DrawRect(bc.TargetRect, xui.Color_Red, False, 1)
bc.SetBitmapToImageView(bc.Bitmap, iv)
iv.SetLayoutAnimated(10000, 250, 250, ivSize, ivSize)
End Sub
That's not good. I have created many draggable objects and I have never had a problem like this.
That's probably because I handle all the redrawing/refreshing myself. Clearly the image object requires more time to refresh.
Also, the BitmapCreator functions may be slower than the Canvas drawing or native View rendering.
Other community members may know what causes this. If anyone knows more about this please respond.