Android TextView 文字换行的问题 spa
Android TextView textView.setText("aaa\nbbb");能够自动换行, .net
可是String s = "aaa\nbbb"; orm
textView.setText(s); get
解决: io
s = "aaa\nbbb"; top
s = s.replace("\\n", "\n"); co
正常了 background