即使我关闭应用程序,Android应用程序中的背景音乐服务也会继续播放

时间:2016-12-08 06:46:24

标签: android service background

我正在使用后台服务为我的应用程序运行所有活动的背景音乐!问题是,当应用程序运行时,它运行正常,但当我关闭它时,它会继续播放音乐,直到我从设备上卸载它!

您认为这里的问题是什么?

以下是我的后台服务中的代码:

/**
* Created by Naira on 12/5/2016.
*/

public class Background_music extends Service {
private static final String TAG = null;
MediaPlayer player;
public IBinder onBind(Intent arg0) {

    return null;
}
@Override
public void onCreate() {
    super.onCreate();
    player = MediaPlayer.create(this, R.raw.music);
    player.setLooping(true); // Set looping
    player.setVolume(50,50);

}
public int onStartCommand(Intent intent, int flags, int startId) {


    player.start();

    return START_STICKY;
}

public void onStart(Intent intent, int startId) {
    // TO DO
}
public IBinder onUnBind(Intent arg0) {
    // TO DO Auto-generated method
    return null;
}

public void onStop() {


}
public void onPause() {


}
@Override
public void onDestroy() {
    player.stop();
    player.release();
    player = null;
}

@Override
public void onLowMemory() {

}
}

这是我第一个将其作为Intent运行的活动中的代码:

Intent svc=new Intent(this, Background_music.class);
startService(svc);

当然,我确实在清单中声明了它=) 提前谢谢!

1 个答案:

答案 0 :(得分:1)

在MainActivity的onDestroy()方法中,您必须停止服务。

@Override
    protected void onDestroy() {
        super.onDestroy();
        if(isMyServiceRunning(Background_music.class))
        {
            stopService(new Intent(this, Background_music.class));
        }
    }


private boolean isMyServiceRunning(Class<?> serviceClass) {
        ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
        for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
            if (serviceClass.getName().equals(service.service.getClassName())) {
                return true;
            }
        }
        return false;
    }

希望这会对你有所帮助。