【发布时间】:2019-11-27 17:41:07
【问题描述】:
我无法将 MainActivity 中的数据共享到 Welcome 活动,即使我按照此页面的说明进行操作: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);
};
欢迎(活动2)
string name = Intent.GetStringExtra("name") ?? "Data not available";
我得到空值,不知道为什么。有什么建议或建议吗?
【问题讨论】: