Hi, When I add a imageview in a view(with width and height)... the image lost quality...the same thing happend if I add a label to the view..
only if the view not have defined size works normally.
Anybody have a solution for this ?
1 Answer
try this ::
var imageview = Ti.UI.createImageView({ height : 'auto' width : 'auto' size:{ height : 60, width : 60 }, canScale: true });this code will only work for imageView.Please vote this answer if it works.
Your Answer
Think you can help? Login to answer this question!