0

我有一个 Activty Voice,可以将 2 个不同的捆绑包发送到两个不同的活动。

    Bundle a = new Bundle();
    a.putInt("key", counter_score);
    Intent sendtoA = new Intent(Voice.this, ActivityA.class);
    sendtoA.putExtras(a);
    startActivity(sendtoA);

    String correct_a = txView.getText().toString();
    Bundle basket_a = new Bundle();
    basket_a.putString("keya", correct_a);
    Intent putBasket_a = new Intent(Voice.this, ActivityFinal.class);
    putBasket_a.putExtras(basket_a);


 finish();

a 我在这两个方面都很好地ActivityA抓住了ActivityFinalBundle

Bundle got_a = getIntent().getExtras();
gota = got_a.getInt("key");

但是我无法检索 basket_a

Bundle gotA = getIntent().getExtras();
gotLetterA = gotA.getString("keya");
txView.setText("Nice" + gotLetterA);

一个包正在传递,而另一个正在传递一个字符串。

对于 ActivityFinal 上的 gotA,结果显示为 null..

谢谢

4

0 回答 0