片段中的代码
在我的片段中,我检查我的服务是否已绑定,但是当Main.bindMusicService();如何立即调用第二个方法?完成(在调用onServiceConnected之后)?
现在,我必须轻按我的歌曲2次才能开始播放。
if (!Main.mServiceIsBound && getActivity() != null) {
Main.bindMusicService(getActivity().getApplicationContext());
Log.i(TAG,"Service is not bound yet!, binding Service...");
}
if (getActivity()!= null && Main.mServiceIsBound) {
Main.mediaPlayerService.startActionPlay(getActivity().getApplicationContext(), songList, position);
}