How to wrap the text of one TextView under another Textviews in android?

Does anyone know how it is possible to wrap the text of one TextView under another TextViews when they are all arranged on the same line one after the other?

Here is an example of what I have and what I need (I cannot insert an image here): http://www.imagesup.net/?di=1014121123675

+3


source to share


1 answer


You need to use one TextView

for all text. If you need them to have different styles, study SpannableStringBuilder

to create a line and add spacing to affect the styles.



+1


source







All Articles