Re: [mono-android] Nothing being passed back from a webservice

2012-03-02 Thread nodoid
Hi, That's getting me a good bit further, but there is still something not quite right. The new code looks like this private string rTrack; public ListgetUpcomingRaces(string track) { Listf = new List(); rTrack = track; f = getUpcomingR

[mono-android] UI threading problem

2012-03-02 Thread nodoid
Hi, This could possibly be down to my current state of needing sleep but then again, it could be something else. I've searched for examples on how to fix the problem below, but can't seem to find what I need and it's starting to drive me potty! Essentially, I have a race condition whereby the web

Re: [mono-android] messagebox for android

2012-05-22 Thread nodoid
Hi, Try this 8--> public class modal : Activity { private bool mChoice = false; private bool mQuitModal = false; private IntPtr mMsgQueueNextMethod; private IntPtr mMsgTargetField; public modal() { } public void showAlertDialog(Co

Re: [mono-android] What's up with 4.2.3 debugging?

2012-06-14 Thread nodoid
Hi, The debugger seems to timeout like crazy. I may have to drop back down to 4.2.1 as my current projects need me to be able to debug code quickly and the current version really isn't good at it. Can someone at xamarin look into this? Thanks Paul -- View this message in context: http://mono-

[mono-android] Returning back from an activity that calls a SetWebViewClient

2012-06-15 Thread nodoid
Hi, Hi, I have a simple problem Activity A calls Activity B Activity B has a webview and looks like this SetContentView(Resource.Layout.webView); WebView webView = FindViewById(Resource.Id.webView1); webView.Settings.JavaScriptEnabled = true; web

Re: [mono-android] Unable to deploy to a device with MD and Mountain Lion 10.8.1

2012-09-17 Thread nodoid
Hi, Looks like Samsung have yet to update their drivers for 10.8... Oh well. Paul -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Unable-to-deploy-to-a-device-with-MD-and-Mountain-Lion-10-8-1-tp5711846p5711847.html Sent from the Mono for Android mailing list ar

Re: [mono-android] Being driven insane....

2011-11-23 Thread nodoid
Hi, Jonathan Pryor-2 wrote > >> In the main tab constructor, I have >> >> Bundle b; >> b.PutSerializable("data", foo); >> intent.PutExtras(b); > > This is not what you think it is. Java.IO.ISerialzable != > System.Runtime.ISerializable. They have _completely_ different semantics, > not least i

Re: [mono-android] Being driven insane....

2011-11-23 Thread nodoid
Hi, Re XML serialization... Typically, I would use (say) foo p = new p(); System.Xml.Serialization.XmlSerializer x = new System.Xml.Serialization.XmlSerializer(p.GetType()); x.Serialize(Console.Out, p); Obviously, I can't use Console.Out, so where do I need to point it to (for example a tempor

Re: [mono-android] Being driven insane....

2011-11-28 Thread nodoid
Hi, Hmm, something is still not right. Are there any types which cannot be serialized for Android? Currently, I have this [Serializable()] public class common { public int p, a, w, pa; public double bodyWeight, tempBody, tempSurround; public double[,] correcti

[mono-android] Menus

2011-11-29 Thread nodoid
Hi, Is there an example anywhere on how to create a menu for an application from the menu button? I can't seem to find one. Paul -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Menus-tp5029246p5029246.html Sent from the Mono for Android mailing list archive at Nab

[mono-android] Non-serializable types in Monodroid?

2011-11-29 Thread nodoid
Hi, Simple question - other than types not serializable in standard C#, are there any other additional types which cannot be serialized in Monodroid? I'm trying to serialize a class (below) using the code below that, but it dies when I try to serialize the class. [Serializable] public cl

[mono-android] Deserialize from Intent.GetStringExtra issue

2011-11-29 Thread nodoid
Hi, I'm slowly getting there (which is always good). Serializing my class and passing it to other classes seems to be working. Unfortunately at the other end, things aren't as good - I'm getting a null exception. common data; public void deserialize() { Syst

Re: [mono-android] Deploy to device without going through store

2011-11-29 Thread nodoid
Hi, milop wrote > > Thanks, Andrew. > > That installs my app, but it doesn't install the Mono runtimes. > > How do I get those installed? > > Mike > >From what I understand, the mono runtimes are statically linked to the executable Paul -- View this message in context: http://mono-for-an