textview会保留一段文字就好了。如果文本很长,则问题是指定文本。无论是硬编码还是在strings.xml中,文本都需要是一条长连续的行。换行符是实际的换行符。它不像html或者乳胶那样等待有意的换行。是否存在行继续符或类似于Python或Matlab的内容?
答案 0 :(得分:1)
我刚试过这个,而且我没有发现长串的问题。
<string name="test">
test test test test
test test test test
test test test test
test test test test
\n\n
test test test test
test test test test
test test test test
test test test test
test test test test
test test test test
test test test test
test test test test
</string>
在此示例中,第一个中断\n\n
启动一个新段落,但所有其他中断在同一段落中继续。