When I define in a TextView in XML, how do I add new line to it? \n seams to not work.

<TextView
   android:id="@+id/txtTitlevalue"
   android:text="Line1: \n-Line2\n-Line3"
   android:layout_width="54dip"
   android:layout_height="fill_parent"
   android:textSize="11px" />
link|improve this question

1  
Your code does work for me. What do you get instead of multiline text? – Márton Molnár May 15 '10 at 16:39
In the visual editor it shows as textual \n – Pentium10 May 15 '10 at 19:51
feedback

8 Answers

up vote 50 down vote accepted

Don't trust the Visual editor. Your code does work in the emu.

link|improve this answer
feedback

Try:

android:lines="2"

\n should work.

link|improve this answer
my textview could be longer than 2 lines. Its a control. It can be just about anything. – dropsOfJupiter Mar 18 '11 at 1:44
Use android:maxLines="10" and it work like you want :) – aF. Sep 30 '11 at 14:16
feedback

I think this has something to do with your HTM.fromHtml(subTitle) call: a "\n" doesn't mean bupkis to HTML. Try <br/> instead of "\n".

link|improve this answer
</br> not works. <br> works – androidev Alex Aug 17 '11 at 21:23
feedback

Also you can add <br> instead of \n.

And then you can add text to TexView:

articleTextView.setText(Html.fromHtml(textForTextView));
link|improve this answer
feedback

First, put this in your textview:

android:maxLines="10"

Then use \n in the text of your textview.

maxLines makes the TextView be at most this many lines tall. You may choose another number :)

link|improve this answer
feedback

make sure your \n is in "\n" for it to work.

link|improve this answer
feedback

If you debug, you will see that the string is actually "\ \r\ \n" or "\ \n", ie, it is escaped. So if you massage that string, to get rid of the extra \, you will have your solution. This is true especially if you are reading from a database.

link|improve this answer
feedback

try System.getProperty("line.separator");

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.