Build an Intent
In
MyActivity.java
, inside thesendMessage()
method, create anIntent
to start an activity calledDisplayMessageActivity
with the following code:java/com.mycompany.myfirstapp/MyActivity.java
public void sendMessage(View view) { Intent intent = new Intent(this, DisplayMessageActivity.class); }
Note: The reference to
DisplayMessageActivity
will raise an error if you’re using an IDE such as Android Studio because the class doesn’t exist yet. Ignore the error for now; you’ll create the class soon.The constructor used here takes two parameters:
A
Context
as its first parameter (this
is used because theActivity
class is a subclass ofContext
)The
Class
of the app component to which the system should deliver theIntent
(in this case, the activity that should be started)
Android Studio indicates that you must import the
Intent
class.At the top of the file, import the
Intent
class:java/com.mycompany.myfirstapp/MyActivity.java
import android.content.Intent;
Tip: In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
Inside the
sendMessage()
method, usefindViewById()
to get theEditText
element.java/com.mycompany.myfirstapp/MyActivity.java
public void sendMessage(View view) { Intent intent = new Intent(this, DisplayMessageActivity.class); EditText editText = (EditText) findViewById(R.id.edit_message); }
At the top of the file, import the
EditText
class.In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
Assign the text to a local
message
variable, and use theputExtra()
method to add its text value to the intent.java/com.mycompany.myfirstapp/MyActivity.java
public void sendMessage(View view) { Intent intent = new Intent(this, DisplayMessageActivity.class); EditText editText = (EditText) findViewById(R.id.edit_message); String message = editText.getText().toString(); intent.putExtra(EXTRA_MESSAGE, message); }
An
Intent
can carry data types as key-value pairs called extras. TheputExtra()
method takes the key name in the first parameter and the value in the second parameter.At the top of the
MyActivity
class, add theEXTRA_MESSAGE
definition as follows:java/com.mycompany.myfirstapp/MyActivity.java
public class MyActivity extends AppCompatActivity { public final static String EXTRA_MESSAGE = "com.mycompany.myfirstapp.MESSAGE"; ... }
For the next activity to query the extra data, you should define the key for your intent's extra using a public constant. It's generally a good practice to define keys for intent extras using your app's package name as a prefix. This ensures the keys are unique, in case your app interacts with other apps.
In the
sendMessage()
method, to finish the intent, call thestartActivity()
method, passing it theIntent
object created in step 1.With this new code, the complete
sendMessage()
method that's invoked by the Send button now looks like this:java/com.mycompany.myfirstapp/MyActivity.java
/** Called when the user clicks the Send button */ public void sendMessage(View view) { Intent intent = new Intent(this, DisplayMessageActivity.class); EditText editText = (EditText) findViewById(R.id.edit_message); String message = editText.getText().toString(); intent.putExtra(EXTRA_MESSAGE, message); startActivity(intent); }
The system receives this call and starts an instance of the
Activity
specified by the Intent. Now you need to create theDisplayMessageActivity
class in order for this to work.