1

我已经查看了这里关于堆栈溢出的示例。但是,我无法获得正常工作的解决方案。我的应用程序仍然崩溃。如何将字符串从一个活动中的编辑文本传递到另一个活动?

这是我第一个活动的代码:

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);
4

4 回答 4

7

改变:

Intent intent = new Intent();

到:

Intent intent = new Intent(MyCurrentActivityClass.this, NextActivity.class);

确保 NextActivity 在 Manifest 中。在第一种情况下,您没有提供足够的信息来启动活动。

于 2013-08-28T07:16:30.970 回答
4

试试这个:

从第一个活动发送如下:

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 i = new Intent(this, ActivityTwo.class);
        i.putExtra("location", etLocation.getText().toString());      
        startActivity(i);
}
});

在第二个活动中这样做:

Intent in = getIntent();
String tv1= in.getExtras().getString("location");
textView1.setText(tv1);
于 2013-08-28T07:22:07.010 回答
3

您应该以这种方式从第二个活动中获取信息:

Bundle extras = getIntent().getExtras();
String myLocation= extras.getString("location");
于 2015-06-02T20:20:28.533 回答
0

你声明了一个变量 textview1 吗?改变

textView1 = (TextView) findViewById(R.id.textView1); 到

TextView textView1 = (TextView) findViewById(R.id.textView1);

于 2014-06-30T01:20:40.363 回答