字符串:Hello there my\r\nName is\r\nJohn Smith\r\nand\r\nstuff
現在每行放一個新列表項
需要的結果(帶有單獨列表項的列表視圖):
Hello there my
--------------
Name is
--------------
John Smith
--------------
and
--------------
stuff
我用了\r\n
解析字符串,然後用數組調試器將每行插入一個數組設置列表視圖。但是只是出現換行效果,我得到了一個textView,如下(這是一個textView)。
Hello there my
Name is
John Smith
and
stuff
有方法能不讓它創建新行,這樣我可以解析到數組嗎?
String[] myText = {"Helo there my", "Name is", "John Smith", "and", "stuff"};
你完全可以用spilt:
String[] myText="Hello there my\\r\\nName is\\r\\nJohn Smith\\r\\nand\\r\\nstuff".split("\r\n");