Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsibinski/c41976d7f7873ab870f1a41fc0b9540c to your computer and use it in GitHub Desktop.
Save dsibinski/c41976d7f7873ab870f1a41fc0b9540c to your computer and use it in GitHub Desktop.
private void _btnPeople_Click(object sender, EventArgs e)
{
var intent = new Intent(this, typeof(PeopleActivity));
var msgContent = "Hello! This is a secret sent from MainActivity! Don't tell anyone!";
intent.PutExtra("secret_message", msgContent);
StartActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment