我希望將分數值從一個活動傳遞給另一個活動。我在新活動中添加了意圖和getExtras,但似乎沒有獲得該值。在Android中的活動之間傳遞數據?
活動1;
Intent intent = new Intent(Game.this, EndGame.class);
intent.putExtra("put_score", score);
startActivity(intent);
Game.this.finish();
活動2;
Bundle extras = getIntent().getExtras();
if (extras != null) {
score = extras.getString("put_score");
}
setContentView(R.layout.endgame);
scoreResult = (TextView) findViewById(R.id.scoreNum);
scoreResult.setText(score);
有什麼問題? – MatheusJardimB
您在'scoreResult'處看到什麼值? – nikis
活動1中得分值爲19,活動2得分值爲零。它似乎沒有提供或得到分數值。 – Seatter