Re: [mono-android] Slow launch

2011-08-11 Thread WyrmUK
The app I'm writing starts up in around 2 seconds from cold on a Dell Streak 5 and is pretty fast. Are you doing a lot in your OnCreate? I'm only doing a minimal amount in my OnCreate and am using an AsyncTask to do any long-winded start-up stuff. BluePosition wrote: > > Thank you for the answer

Re: [mono-android] How to get better debug information while debugging?

2011-08-11 Thread WyrmUK
There are a few issues with the debugger but you can usually work around them. If an exception is being thrown then make sure there is somewhere to catch it and put the breakpoint there. Write debug messages to the Log (you can always #if DEBUG then so they don't go into the release) and view them

Re: [mono-android] SurfaceHolder AddCallback random errors

2011-08-11 Thread WyrmUK
Hi. I think V1.0.2 has solved this problem. Since installing that I've not had the issue at all. Here's to all you who helped made the release happen. Cheers, Laurence. WyrmUK wrote: > > Hi. > I'm trying to implement an activity which previews the camera and allows

Re: [mono-android] SurfaceHolder AddCallback random errors

2011-08-09 Thread WyrmUK
ost, but since it is email and > whitespace differences could matter. > > Atsushi Eno > > On 2011/08/09 0:56, WyrmUK wrote: >> Well this is just it. It does work perfectly every time some builds, >> throws >> an exception every time on others (causing the app to cr

Re: [mono-android] SurfaceHolder AddCallback random errors

2011-08-09 Thread WyrmUK
Well this is just it. It does work perfectly every time some builds, throws an exception every time on others (causing the app to crash), and just page faults every time on others (again causing the app to crash). This seems to point to a mandroid issue because it's not like it sometimes works and

Re: [mono-android] SurfaceHolder AddCallback random errors

2011-08-08 Thread WyrmUK
Does anyone have any advice for this issue? Doesn't look liek anyone's looked at it! Hi. I'm trying to implement an activity which previews the camera and allows a picture to be taken. However I get rather mixed results with each build. One time it will work fine, but I might make a change such

Re: [mono-android] ScrollView Makes my background image bigger why?

2011-08-05 Thread WyrmUK
Won't the background be scaled to fit the whole of the scrollview, including the part that's off the bottom of the screen? I would suggest setting the orange background on a view inside the ScrollView and not on the scroll view itself, the scroll view background can then be set to the yellow colour

[mono-android] SurfaceHolder AddCallback random errors

2011-08-05 Thread WyrmUK
Hi. I'm trying to implement an activity which previews the camera and allows a picture to be taken. However I get rather mixed results with each build. One time it will work fine, but I might make a change such as adding a comment and re-compile and I get an error when setting the ISurfaceHolderCal