I use TextView to display text, which consists of several paragraphs. Something like this:
<TextView
android:text="@string/foo"
/>
<resources>
<string name="foo">Great Gauss! - cried Klapaucius - And where are the gruncheons? Where my dear, favorite pritons? Where now the gentle zits?!\nThey no longer are, nor ever will exist again - the machine said calmly - I executed, or rather only began to execute, your order...</string>
<resources>
How can I change the distance between paragraphs without affecting interline (distance between many lines of one paragraph)?
Edit: Maybe I was not precise enough. Yes, I know that since I made linebreak with "\n" I could - by analogy - make two linebreaks with "\n\n". Or do these two linebreaks using HTML. But I am looking for a way to decide, for instance, that space between paragraphs shold be exactly 17 dip. Like I can (as example) do in CSS:
p {
margin-bottom: 21px;
}