I can't share the data I have in MainActivity to the Welcome activity, even though I followed the instructions of this page: https://developer.xamarin.com/recipes/android/fundamentals/activity/pass_data_between_activity/
MainActivity (Activity1)
Button button = FindViewById<Button>(Resource.Id.send);
EditText myName = FindViewById<EditText>(Resource.Id.name);
string name = myName.Text;
button.Click += delegate {
var welcome = new Intent(this, typeof(Welcome));
welcome.PutExtra("name", name);
StartActivity(welcome);
};
Welcome (Activity2)
string name = Intent.GetStringExtra("name") ?? "Data not available";
I get null, don't know why. Any suggestions or advise?