将信息从编辑文本提取到另一个活动?

时间:2011-06-07 18:18:43

标签: android eclipse

我在一个活动中有这个EditText字段,我想要它,所以当我点击附加到该字段的按钮时,该字段将被拉入另一个活动中的另一个文本字段。我不太确定要开始这个。有什么建议吗?

感谢您的帮助。

1 个答案:

答案 0 :(得分:5)

内部活动,当您希望开始另一项活动时,您可以:

Intent intent = new Intent(this, Activity.B);
// pass the content of your EditText as parameter to the intent you use to start the other activity
intent.putExtra("string", editText.getText().toString(); 
startActivity(intent);

并在Activity的onCreate()中执行类似

的操作
// retrieve the text and show it in the TextView
textView.setText(getIntent().getExtras().getString("string"));