我正在为音频流开发一个非常简单的安卓应用程序。从活动中,我启动和停止必须管理 MediaPlayer 的服务,每次打开主要活动时,我都会检查服务是否已经在运行。它工作正常,但我有一个我无法弄清楚的问题。
曾经有一次在服务仍在运行时打开应用程序,找不到我的服务,我无法使用我实现的停止按钮停止它。
这是一些代码:
要检查服务是否正在运行:
private boolean isMyServiceRunning() {
ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
if (StreamingRadio.class.getName().equals(service.service.getClassName())) {
return true;
}
}
return false;
}
然后当调用 Activity onStart() 时:
@Override
protected void onStart() {
super.onStart();
if(isMyServiceRunning()) {
streamingIsLive=true;
...
if(!isRegistered) {
registerReceiver(onNotice, new IntentFilter("startprogress"));
isRegistered=true;
}
}
}
和 onStop()
@Override
protected void onStop() {
super.onStop();
if(isRegistered) {
unregisterReceiver(onNotice);
isRegistered=false;
}
}
而就我的播放和停止按钮而言:
public void onButtonPlay(View v) {
if(!streamingIsLive) {
streamingIsLive=true;
Intent intent = new Intent(this, StreamingRadio.class);
startService(intent);
....
}
}
public void onButtonStop(View v) {
if(streamingIsLive) {
streamingIsLive=false;
Intent intent = new Intent(this, StreamingRadio.class);
stopService(intent);
...
}
}
这个问题可能是什么?谢谢