Re: [mono-android] send parameters to activity from java class to c#

2011-07-22 Thread Jonathan Pryor
On Jul 22, 2011, at 10:40 AM, alex wrote: > oh thanks for reply !! I have a doubt i was trying to open my c# activity > like this > > intent.setClass(mapView.getContext(), (ListDetail)); This syntax doesn't look valid. What you want is: intent.setClass(mapView.getContext(), ListDetail.c

Re: [mono-android] send parameters to activity from java class to c#

2011-07-22 Thread alex
oh thanks for reply !! I have a doubt i was trying to open my c# activity like this intent.setClass(mapView.getContext(), (ListDetail)); where Listdetail is in c# but it doesnt work ? do you know how to indicate that i want to star a c# activity ?? Thanks a lot -- View this message in context

Re: [mono-android] send parameters to activity from java class to c#

2011-07-21 Thread Jonathan Pryor
On Jul 21, 2011, at 10:29 AM, alex wrote: > I have an activity in java and i need to open a new > activity sending parameters from this java class to a c# activity ! but i > dont know how to do it!! Someone please ? You can attach extra data to the Intent that is used to launch an activity throu

[mono-android] send parameters to activity from java class to c#

2011-07-21 Thread alex
Hi guys I hope you can help me ! I have an activity in java and i need to open a new activity sending parameters from this java class to a c# activity ! but i dont know how to do it!! Someone please ? thanks -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/send-pa