Hi, thanks for such good libraries, I think I found a mistake in this. I am attaching a sample that shows the problem. Thank you very much
Hi jota, problem solved, you should use first i.SetBitmap and aftert iv.SetBackgroundImage
anyway this is your code:
Sub Activity_Create(FirstTime As Boolean)
'a display example 724x480
i.Initialize("i")
iv.Initialize("")
'sizes equals
Activity.AddView(iv,0,0,100%x,50%y)
Activity.AddView(i,0,iv.Height,iv.Width,iv.Height)
'created a graphic object size
bmpDoc.Initialize(File.DirAssets,"doc.png")
Dim r As Rect
r.Initialize(0,0,iv.Width,iv.Height)
bmpt.InitializeMutable(iv.Width,iv.Height)
c.Initialize2(bmpt)
c.DrawBitmap(bmpDoc,Null,r)
***********************************
'problem solved
i.SetBitmap=bmpt
iv.SetBackgroundImage(bmpt)
***********************************
End Sub
I think u mean this let me know.
best regard
G.Salvi