i have a string that will get picked up by an intentExtra in my next class and be set as the text for a multiline TextView. i was wodnering if there is a way to split the text up so they are under eachother, so i have this string:

maint = "Here is some info about nothing." +
                "Some more info about nothing." +
                "And a little more about nothing";

so usually they would be displayed in a textView like this:

Here is some info about nothing. Some more info about nothing. And a little more info about nothing.

is there a way so they would end the line after each one of those separate pieces were written into the TextView

like so:

Here is some info about nothing.
Some more info about nothing.
And a little more about nothing.

it just seems like it would be too much with a separate TextView for each of those separate sentences.

thanks in advance

link|improve this question

80% accept rate
possible duplicate of How do I add a newline to a TextView in Android? – Joachim Isaksson Feb 9 at 18:49
feedback

2 Answers

up vote 2 down vote accepted

Add a /n to where you want to have a newline.

maint = "Here is some info about nothing.\n" +
        "Some more info about nothing.\n" +
        "And a little more about nothing";

You could also format it using Html. Add a where you want a newline.

maint = "Here is some info about nothing.</br>" +
        "Some more info about nothing.</br>" +
        "And a little more about nothing";

If you format it with HTML, you need to parse it first before passing it to the textview:

myTextView.setText(Html.fromHtml(maint));
link|improve this answer
ok sweet, thanks, so if i just use the '\n' i dont have to parse? – Nick Pesa Feb 9 at 18:52
@NickPesa Yes you do not need to parse if you just use '\n'. For your reference, '\n' is the newline character in Java. If you want more complicated text formatting, such as differently colored words, you can use HTML parsing. – onit Feb 9 at 18:53
that worked perfectly thanks – Nick Pesa Feb 9 at 18:53
yes i remember using it in c++ ive done before, but i was not sure if java used it as well – Nick Pesa Feb 9 at 18:54
@NickPesa np. I would appreciate an accepted answer if it solved your problem though. – onit Feb 9 at 18:54
show 1 more comment
feedback

This should do what you want ("\n" being a newline character)

maint = "Here is some info about nothing.\n" +
                "Some more info about nothing.\n" +
                "And a little more about nothing\n";
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.