Skip to content

Instantly share code, notes, and snippets.

@goliver79
Last active December 23, 2020 08:43
Show Gist options
  • Save goliver79/8873736 to your computer and use it in GitHub Desktop.
Save goliver79/8873736 to your computer and use it in GitHub Desktop.
[ANDROID] Start new Activity
public void sendMessage(View view) {
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
EditText editText = (EditText) findViewById(R.id.edit_message);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment