I created an image directory in my projects in the UI folder to place my images. So the full path is currently Resources/UI/Images. When i create an image view it wont display t
There is an error in your code. There is no url property for ImageView control. You should use image property. Try the following code
url property
var imgv = Titanium.UI.createImageView({ image:"../images/sb02.jpg" }); self.add(imgv);