Preferred way to add background music to Android game?

不打扰是莪最后的温柔 提交于 2019-12-04 18:22:09

Try this

mServ = ((MusicService.ServiceBinder)binder).getService();

Its working for me. Also Change getService() method in MusicService class as public method.

Will Richardson

After extensive looking, I have found this other question: Playing BG Music Across Activities in Android

Which points to this code: http://www.rbgrn.net/content/307-light-racer-20-days-61-64-completion

Which seems to work fine. Not sure if this is the best way..

Try to use

mServ = ((MusicService.ServiceBinder) binder).getService();

with making getService() public

public class ServiceBinder extends Binder {
    public MusicService getService() {
        return MusicService.this;
    }
}
mServ = ((MusicService.ServiceBinder)binder).getService();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!