Back to project page audio-wife.
The source code is released under:
MIT License
If you think the Android project audio-wife listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package nl.changer.audiowifedemo; // w w w . j ava2s . c o m import nl.changer.audiowife.AudioWife; import android.net.Uri; import android.support.v4.app.FragmentActivity; public class BaseActivity extends FragmentActivity { protected Uri mUri; @Override protected void onPause() { super.onPause(); // when done playing, release the resources AudioWife.getInstance().release(); mUri = null; } }