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