c# - Can't receive data from intent -
i using monodroid make application. in application user clicks button goes listview, listview has multiple options, user selects on option , option sent original class textview changed same text option on listview selected. below class sends data protected override void onlistitemclick(listview l, view v, int position, long id) { int t = labels[position]; string text = t + ""; intent send = new intent(this, typeof(createvehicle)); send.setflags(activityflags.cleartop | activityflags.singletop); send.putextra("t", "data firstactivity"); startactivity(send); } below receiving class: protected override void onresume() { base.onresume(); // call superclass first. textview tvyearchange = findviewbyid<textview>(resource.id.tvyearchange); string text = intent.getstringextra("t") ?? "work"; tvyearchange.settext(text, null); }...