Hello!
Is it possible to get the same behaviour on Android as on iOS? I need a label to just render as much text as it can and at the end add '...''s if not everything is displayed. Now the Android label just cuts of the text and I get half a line at the bottom.
var w = Ti.UI.createWindow({ backgroundColor:"white" }); var label = Ti.UI.createLabel({ width:250, height:350, ellipsize:true, wordWrap:true, text:"Maecenas sed diam eget risus varius blandit sit amet non magna. Donec sed odio dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cras mattis consectetur purus sit amet fermentum. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Donec id elit non mi porta gravida at eget metus. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum." }); w.add(label); w.open();Thanks :)