单击提交按钮android 2.2在textview中添加文本

时间:2011-07-22 13:41:04

标签: android dynamic textview

我想要做的是在编辑文本中添加一些文本 我希望在提交按钮上添加它在下面提供的文本视图中...因此,每次我在提交时添加d文本它应该附加在该文本视图中 但问题是它被覆盖了

这里是代码:

      // submit button

      final Button button = (Button) findViewById(R.id.Submit);
      button.setOnClickListener(new View.OnClickListener() {
      public void onClick(View v) {

      // Perform action on click

      EditText et = (EditText) findViewById(R.id.EnterText);
      TextView history=(TextView) findViewById(R.id.history);

      history.setText(et.getText().toString());
      }

      });

4 个答案:

答案 0 :(得分:1)

试试这个

history.setText(history.getText() + "\n" + et.getText().toString());

答案 1 :(得分:0)

尝试..

  

history.setText(history.getText()+ et.getText()。toString());

答案 2 :(得分:0)

更改

history.setText(et.getText().toString());

history.setText(history.getText() + et.getText().toString());

这应该附加新文本。

答案 3 :(得分:0)

使用它来附加下一行的文字:

history.setText(history.getText() +"\n" +et.getText().toString());