我在一个活动中有这个EditText
字段,我想要它,所以当我点击附加到该字段的按钮时,该字段将被拉入另一个活动中的另一个文本字段。我不太确定要开始这个。有什么建议吗?
感谢您的帮助。
答案 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"));