What technology diplay image, will be simple for iPhone. In the Androyd I used label and background image.
In the iPhone I can not do it. Now I'm planning to make my application in two versions for android and iPhone, what technology to use to make the program's text have minimal differences. Please write me 2 short examples for iPhone and Android how to insert a picture in the middle of the screen.
B4X:
Dim lblIMG as label, img as bitmap
img.Initialize(File.DirAssets,"z_startrek.gif")
lblIMG.Initialize("None")
lblIMG.SetBackgroundImage(img)
lblIMG.SendToBack
Activity.AddView(lblIMG, 10%x, 10%y, 80%x, 80%y)