Closing Resources When BlackBerry Application Quits - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:08:56Z http://stackoverflow.com/feeds/question/559928 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/559928/closing-resources-when-blackberry-application-quits 0 Closing Resources When BlackBerry Application Quits Cristian 2009-02-18T05:12:22Z 2009-04-30T16:00:20Z <p>What's the best way to close resources in a BlackBerry application? I use the resources throughout the life of the application and would just like to register some listener to be called when the app is just about to quit. Is there a simple hook that's called before the app is closed?</p> http://stackoverflow.com/questions/559928/closing-resources-when-blackberry-application-quits/559947#559947 0 Answer by Andrew Grant for Closing Resources When BlackBerry Application Quits Andrew Grant 2009-02-18T05:25:33Z 2009-02-18T05:25:33Z <p>WHhen your app quits all resources are reclaimed by the OS.</p> <p>You definitely have the right mindset that freeing up resources is a good thing to do, but if you have to jump through hoops to do so when your app quits then it may not be worthwhile.</p> http://stackoverflow.com/questions/559928/closing-resources-when-blackberry-application-quits/562296#562296 0 Answer by omermuhammed for Closing Resources When BlackBerry Application Quits omermuhammed 2009-02-18T18:30:50Z 2009-02-18T18:30:50Z <p>One point as Andrew mentioned should be thought out. If you have to jump through hoops to free resources, try to change the design so as to ensure that resources are freed through one control point. This will make it easier for you. and more maintainable.</p> http://stackoverflow.com/questions/559928/closing-resources-when-blackberry-application-quits/672124#672124 1 Answer by Jacques René Mesrine for Closing Resources When BlackBerry Application Quits Jacques René Mesrine 2009-03-23T03:17:05Z 2009-03-23T03:17:05Z <p>One thing you can do is to trap for the ESC key. When only your Main Screen is in the screen stack ( UiApplication.getScreenCount() ) &amp; the ESC key is pressed, you can then clean up your resources.</p> <ol> <li>Also, you can register a SystemListener to listen for powerOff() callbacks to kill threads or clean up resources.</li> <li>Furthermore, UIApplication.deactivate() is also a good place to clean up/suspend stuff when your app is backgrounded.</li> </ol> http://stackoverflow.com/questions/559928/closing-resources-when-blackberry-application-quits/807679#807679 1 Answer by kozen for Closing Resources When BlackBerry Application Quits kozen 2009-04-30T16:00:20Z 2009-04-30T16:00:20Z <p>Overwrite the <code>MainScreen.close()</code> function of the screen that is the last to be popped out of the UI stack. This <code>close()</code> method is most probably the last method that is called before your application is destroyed.</p> <p>Let me please add, that it is highly recommended to always close streams especially for file access. </p>