As Alex has told you, you can send data in an Intent with the putExtra method, for example:
Intent intent = new Intent(this, NuevoActivity.class);
intent.putExtra("title", title);
intent.putExtra("message", message);
startActivity(intent);
In this example in the intent to change to NewActivity you send two extras called title and message in which you send the title and message varibals, and then you could receive it and save it in variables like this:
tituloRecibido = getIntent().getStringExtra("title");
mensajeRecibido = getIntent().getStringExtra("message");
In this case both extras that are sent are Strings.