0

我正在为音频流开发一个非常简单的安卓应用程序。从活动中,我启动和停止必须管理 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);
            ...
    }
}

这个问题可能是什么?谢谢

4

1 回答 1

1

如API 文档中所述,您不应该继续使用它,getRunningServices()因为它不适合在生产中使用:

返回当前正在运行的服务的列表。

注意:此方法仅用于调试或实现服务管理类型的用户界面。

相反,您必须保持参考服务是否在其onCreate(), onDestroy(), onStartCommand(),onLowMemory()等范围内运行。

于 2013-05-20T18:32:35.340 回答