Sending class code:
Intent i = new Intent(this, QuizActivity.class);
i.putExtra("name", name);
startActivity(i);
Recieving class code:
Intent intent = getIntent();
if (intent != null) {
totalScore = intent.getIntExtra("totalScore",0);
}
TextView scoreView = findViewById(R.id.totalScore);
scoreView.setText(totalScore);