Hi,
this code:
Ti.App.TaxoModel.getImage({ // make proxy caching url : self.image_url, // url of image onload : function(_res) { self.add(Ti.UI.createImageView({ top : '10dp', bottom : '10dp', width : Ti.UI.FILL, height : Ti.UI.SIZE, image : _res.path // locale path })); } });works bad in newst version. In older SDK version the image fills the with of tableviewrow (self) and the height depends on ration width/height. In newest version the image is very slim and the height is standard (ca. 50px). This is an android problem.
Any ideas how I can realize my layout visions?