I'm working on an app using Processing in Eclipse, and have a few questions.
I want my app to quit on pause, so when the back button is pressed, a call is received, etc. To do this, I called super.finish() in the pause function. For the most part, this has worked well.
On the setup() of the sketch I load a vector image and it is displayed. For some reason, a combination of this, and the quitting on pause causes the app to forceclose if it is paused within a second or two of opening. (After waiting for the first several frames to pass it no longer forcecloses when paused) If I comment out the code that loads and displays the .svg, the app no longer forcecloses. Does anyone have any idea about this?
Also, the sketch in general just looks lower resolution when compiled from Eclipse than from the PDE. I'm mostly using the built in Processing line, ellipse, etc., so I'm not sure what is going on. Is this a known issue, and is there a way to improve the resolution? I'm not sure if resolution is the correct word in the context of vectors, but that's the best I can do to describe it.
Thanks, and please ask if I can clarify something
1