Is it possible to make only a part of the text in TextView not wrap to the next line?
Currently I have:
|Some long description [kg/|
|m^2] |
On small screens I want:
|Some long description |
|[kg/m^2] |
But if there is enough space on the screen I want:
|Some long description [kg/m^2] |
so that the part of the text [kg/m^2]
is always in one piece.
See here for more details http://developer.android.com/training/multiscreen/screensizes.html