我需要在字符串中添加几个换行符,但不起作用,它只添加第一个换行符。但是在java中它可以工作。
例如,对于这个字符串:
String s = "one\n\ntwo";
在android中打印:
one
two
在 java 打印中:
one
two
我用 "\n"、"System.getProperty("line.separator") 和 String.format("%n") 进行了测试,结果相同。
有谁知道解决方案?
更新:我动态生成字符串来对服务器进行身份验证,我不需要将它添加到 TextView 并且我不能使用 strings.xml
已解决:Logcat 不会仅使用 \n 打印行,但字符串包含它。谢谢。