0

我有一个编辑文本,我想根据按下的按钮在编辑文本的每一行的文本之前附加一些字符。例如

if( fivespacesbutton is pressed )
then
append five spaces on each line the function OnClick(View v) has called.

我想如果我了解行尾 (/n),那么我将在每行之前附加五个空格。

知道如何从

EditText scene=(EditText)findViewById(R.id.editText11);
4

1 回答 1

2
String text = scene.getText().toString();
String result = "";
for (String line : text.split("\n"))
{
   result += "    " + line + "\n";
}
scene.setText(result);
于 2013-10-09T10:34:26.293 回答