I have 2 activities in my app. I'm sending the integer named balance from MainActivity
to UpgradesActivity
but I'm not sure how to send it back. Could anyone help me with that? Here's the code:
//Send balance to UpgradesActivity
Intent intent = new Intent(MainActivity.this, UpgradesActivity.class);
intent.putExtra("key_int", balance);
startActivity(intent);
//Receive balance from MainActivity
Intent mIntent = getIntent();
balance = mIntent.getIntExtra("key_int", 0);