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?
|
1
|
|
|
|
|
|
Overwrite the Let me please add, that it is highly recommended to always close streams especially for file access. |
||
|
|
|
|
One thing you can do is to trap for the ESC key. When only your Main Screen is in the screen stack ( UiApplication.getScreenCount() ) & the ESC key is pressed, you can then clean up your resources.
|
||
|
|
|
|
WHhen your app quits all resources are reclaimed by the OS. 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. |
||
|
|
|
|
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. |
||
|
|
