You can pass variables from one activity to another through the intent like so:
intent.putExtra("key", value);
Then you can call it in the next activity buy using this:
intent.getExtra("key", value);
There are different methods for different data types, so keep that in mind.