Reputation: 8957
I'm a beginner in android.Now am developing a game in android where i need to release all the resources on a button click as the game comes to an end..How to do that?
Upvotes: 0
Views: 1020
Reputation: 15573
Each device has it's own release methods. In general terms, look for the release() method of the device object you are using. For the resources you asked, you can take a look at this for the camera, and the following example for the Media Player.
Upvotes: 1