Passing Data With an Intent
This is the code to pass data from one activity to another through an Intent. This is the code used to create and pass data into an Intent. String dataToPass = "The next activity needs this sentence."; … Intent intent = new Intent(this, NextActivity.class); intent.putExtras("KeyToAccessData", dataToPass); startActivity(intent); And this is how you catch that data [...]