I have several TextViews in a row and I want the 1st TextView to take up all spare space but if the combined length of the TextViews is too long to fit on one line, I want the 1st TextView to be cut off.
As for the spare space I have set the 1st TextView's layout_width to match parent and layout_weight to 1 which works. I just can't get it to cut off any extra letters so it fits on one row.
What I want is something like the following with 'Text' and 'Long Text'
'Text :data'
'Long T :data'
So 'Long Text' gets cut off to 'Long T' in order to fit.
What I get is
'Text :data'
'Long Text :d'
Thanks!