Back to project page audioplayer.
The source code is released under:
GNU General Public License
If you think the Android project audioplayer 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 fr.julien_dumortier.simplemusicplayer.service; /*from ww w. j a v a2 s . com*/ import android.os.Binder; public class BackgroundBinder extends Binder { private MusicPlayerService service = null; public BackgroundBinder(MusicPlayerService service) { super(); this.service = service; } public MusicPlayerService getService() { return service; } }