Created
April 1, 2017 09:39
-
-
Save dsibinski/c41976d7f7873ab870f1a41fc0b9540c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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