0

我将字符串从活动 A 传递到 B,然后我将从 A 中的活动 B 取回数据。因此,我使用了 startActivityForResult()。我总是得到“IS not Null”。我正在接收数据,但无法在 Acitivity B 的文本视图中查看该数据。我正在发布代码,请告诉我出了什么问题。

活动 A(发送数据):

Intent data= new Intent(SendData.this, RecieveData.class);
Bundle check = new Bundle();

check.putString("UmerData", cheese);
medt.setText(cheese);
data.putExtras(check);
startActivityForResult(data, 5);

活动 B(接收数据):

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.recievedata);
    InitializeFoo();
    if(getIntent()!=null)
    {
        rt1.setText("Is not Null");
                    //Bundle got = getIntent().getExtras();

        //rt1.setText(got.getString("UmerData"));
    }
}

PS:我在活动 B 中进行了更改,以查看是否收到字符串。它仍然显示“不是空的”,这意味着我没有得到字符串。但我不知道为什么这没有显示。这是代码:

Bundle got = getIntent().getExtras();
String ss= got.getString("UmerData");
if(getIntent()!=null && ss==null )
{
    //Bundle got = getIntent().getExtras();
    //rt1.setText(got.getString("UmerData"));
    rt1.setText("Is not Null");
}

这是在活动 B 中:

private void InitializeFoo() {
    // TODO Auto-generated method stub
    Rg = (RadioGroup) findViewById(R.id.RG);
    rt1 = (TextView) findViewById(R.id.Rt1);
    rt2 = (TextView) findViewById(R.id.Rt2);
    rec = (Button) findViewById(R.id.Return);
    Rg.setOnCheckedChangeListener(this);
    rec.setOnClickListener(this);
}

谢谢

4

2 回答 2

0

所以有两个主要错误。第一个是在 SendData 中,就在调用 RecieveData 之前,您为意图设置的 cheese 值为 null,这是您在第二个活动中收到 null 的主要原因。以下代码必须适用于这些情况,因此在“if”括号之外:

cheese = Dt.getText().toString();

另一件事(在您放在那里的代码中实际上是可以的)是您将捆绑“检查”设置为额外的本身(通过调用 putExtra(....))而不是作为由键值对(通过调用 putExtras(...))。

它在两个地方都经过测试并获得了正确的价值。为了澄清,我附上了有问题的活动。

package com.umer.practice2;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class SendData extends Activity implements View.OnClickListener {

    EditText Dt;
    Button Dbut, result;
    TextView medt;
    String cheese;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);

    setContentView(R.layout.data);

    InitializeShit();
    }

    private void InitializeShit() {
    // TODO Auto-generated method stub

    Dt = (EditText) findViewById(R.id.Det);
    Dbut = (Button) findViewById(R.id.Sna);
    result = (Button) findViewById(R.id.Sfr);
    medt = (TextView) findViewById(R.id.Med);

    Dbut.setOnClickListener(this);
    result.setOnClickListener(this);

    }

    @Override
    public void onClick(View arg0) {
    // TODO Auto-generated method stub
    cheese = Dt.getText().toString();
    switch (arg0.getId()) {
        case R.id.Sna:

        Bundle send = new Bundle();

        send.putString("UmerData", cheese);
        Intent foo = new Intent(SendData.this, RecieveData.class);

        foo.putExtras(send);

        startActivity(foo);
        break;

        case R.id.Sfr:
        Intent data = new Intent(SendData.this, RecieveData.class);
        Bundle check = new Bundle(); // NOT IN TRAVIS CODE

        check.putString("UmerData", cheese);// NOT IN TRAVIS CODE
        medt.setText(cheese);// NOT IN TRAVIS CODE
        data.putExtras(check);// NOT IN TRAVIS CODE
        startActivityForResult(data, 5);
        break;
    }

    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    // TODO Auto-generated method stub

    super.onActivityResult(requestCode, resultCode, data);

    if (resultCode == RESULT_OK) {
        Bundle roti = new Bundle();
        roti = data.getExtras();
        String ch = roti.getString("String");
        medt.setText(ch);
    }
    }
}

希望它有所帮助。

于 2012-08-15T23:18:55.263 回答
0

如果您使用 putExtras(Bundle) 添加额外内容,则需要在值对的键中包含包名称。参考文档:

“向意图添加一组扩展数据。键必须包含包前缀,例如应用程序 com.android.contacts 将使用类似“com.android.contacts.ShowAll”的名称。

您可以随时使用

data.putExtra("UmerData", cheese);
于 2012-08-13T22:47:44.773 回答