我已经查看了这里关于堆栈溢出的示例。但是,我无法获得正常工作的解决方案。我的应用程序仍然崩溃。如何将字符串从一个活动中的编辑文本传递到另一个活动?
这是我第一个活动的代码:
Button btnGo = (Button) findViewById(R.id.btnGo);
btnGo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
EditText etLocation = (EditText) findViewById(R.id.et_location);
Intent intent = new Intent();
intent.putExtra("location", etLocation.getText().toString());
startActivity(intent);
}
}
第二个活动的代码:
textView1 = (TextView) findViewById(R.id.textView1);
Intent intent = getIntent();
String str = intent.getStringExtra("location");
textView1.setText(str);