I have some text that have more than one paragraph (using \"\\n\") and want to put a spacing between the paragraphs, but without using \"\\n\\n\". But the text from the same par
You can use
Html.fromHtml(String);
This will help you to write string in form of html where you can use the html tags like , etc
Eg:
myTextView.setText(Html.fromHtml("This is it firstparagraph.This is the secondparagraph."));
This is it firstparagraph.
This is the secondparagraph.