我使用 TextView 来显示由几个段落组成的文本。像这样的东西:
<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>
如何在不影响行间行的情况下更改段落之间的距离(一个段落的多行之间的距离)?
编辑: 也许我不够精确。是的,我知道既然我用“\n”做了换行符,我可以——通过类比——用“\n\n”做两个换行符。或者使用 HTML 进行这两个换行符。但我正在寻找一种方法来决定,例如,段落之间的空间应该正好是 17 dip。就像我可以(例如)在 CSS 中做的那样:
p {
margin-bottom: 21px;
}