Question

Do I have to call release() of a media player myself or will it be handled when the activity is destroyed/stopped?

Était-ce utile?

La solution

Call release() on the media player in your onDestroy(), I have never dealt with media players, but I know onDestroy() won't handle removing bitmaps from memory, so I would assume media assets are handled in a similar way, only removing them when you tell it to

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top