我有一行多行EditText但是当我尝试将文本保存到文件时,我打开它时看不到换行符。
我的EditText
inputType
为TextMultiLine
。
这是我的代码
try {
FileOutputStream fos = openFileOutput(cat + ".planit", Context.MODE_PRIVATE);
EditText note = (EditText) findViewById(R.id.note);
String content = data + "date=" + date + "&---&SPLIT&---&color=" + color
+ "&---&SPLIT&---¬e=" + note.getText() + "&---&SPLIT&---&"
+ "PLANIT-STRINGSPLIT";
fos.write(content.getBytes());
fos.close();
} catch (FileNotFoundException e) {
MainActivity.Error(AddTaskActivity.this);
} catch (IOException e) {
MainActivity.Error(AddTaskActivity.this);
}
并在TextView中显示:
ScrollView sV = new ScrollView(this);
RelativeLayout rL = new RelativeLayout(this);
RelativeLayout rLay = (RelativeLayout) findViewById(R.id.items);
TextView note = new TextView(this);
rL.addView(note);
sV.addView(rL);
rLay.addView(sV);