0
這裏是我的代碼:如何在android studio中添加textView的結果?
if(radioButton_correct1e.isChecked()) {
score++;
scoreText.setText(Integer.toString(score));
}
的結果,然後在TextView中所示。這與活動A & B相同。那麼我怎樣才能爲活動添加結果並在活動C中顯示呢?
這裏是我的代碼:如何在android studio中添加textView的結果?
if(radioButton_correct1e.isChecked()) {
score++;
scoreText.setText(Integer.toString(score));
}
的結果,然後在TextView中所示。這與活動A & B相同。那麼我怎樣才能爲活動添加結果並在活動C中顯示呢?
Intent intent = new Intent(ActivityAB.this, ActivityC.class);
intent.putExtra("score",score);
startActivity(intent);
並得到它在ActivityC
在onCreate
。
Intent intent = getIntent();
int score = intent.getIntExtra("score",0);
使用的意圖,開始參數 – Keddy1201
http://stackoverflow.com/a/18146745/4402462一個新的活動 –