应用关闭/最小化时如何停止MediaPlayer声音?

时间:2015-03-24 22:07:58

标签: android android-activity android-mediaplayer android-button

在我的秒表应用程序中,开始按钮应该启动声音,暂停按钮应该停止声音。在这个场景中,我的程序运行正常。

但在播放声音时,如果我返回或最小化应用程序,声音不会停止。它一直在播放(所有时间,甚至设备都处于空闲状态)。奇怪的是,当我重新打开应用程序以停止声音时,它永远不会停止。 怎么解决这个问题?

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    timerValue = (TextView) findViewById(R.id.timerValue);

    startButton = (Button) findViewById(R.id.startButton);
    mp = MediaPlayer.create(getApplicationContext(), R.raw.sound);
    startButton.setOnClickListener(new View.OnClickListener() {

        public void onClick(View view) {
            startTime = SystemClock.uptimeMillis();
            customHandler.postDelayed(updateTimerThread, 0);

               mp.start();
                mp.setLooping(true);


        }
    });

    pauseButton = (Button) findViewById(R.id.pauseButton);

    pauseButton.setOnClickListener(new View.OnClickListener() {

        public void onClick(View view) {

            timeSwapBuff += timeInMilliseconds;
            customHandler.removeCallbacks(updateTimerThread);
            if(mp.isPlaying())
            {
                mp.pause();

            }
       }
    });
    resetButton = (Button) findViewById(R.id.reset);


    resetButton.setOnClickListener(new View.OnClickListener() {

        public void onClick(View view) {

            timerValue.setText("" + 00 + ":"
                    + String.format("%02d", 00) + ":"
                    + String.format("%03d", 00));
            startTime = SystemClock.uptimeMillis();
            timeSwapBuff = 0;

        }
    });

}

private Runnable updateTimerThread = new Runnable() {

    public void run() {

        timeInMilliseconds = SystemClock.uptimeMillis() - startTime;

        updatedTime = timeSwapBuff + timeInMilliseconds;

        int secs = (int) (updatedTime / 1000);
        int mins = secs / 60;
        secs = secs % 60;
        int milliseconds = (int) (updatedTime % 1000);
        timerValue.setText("" + mins + ":"
                + String.format("%02d", secs) + ":"
                + String.format("%03d", milliseconds));
        customHandler.postDelayed(this, 0);
    }

};

3 个答案:

答案 0 :(得分:4)

您可以使用Android生命周期。

我认为您可以在mp.pause();onStop()

上致电onDestroy()

示例代码:

@Override
    protected void onStop() {
        super.onPause();
        mp.pause();
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        mp.pause();
    }

答案 1 :(得分:0)

您应该访问相同的MediaPlayer对象
公开,也许是工作 这个解决方案对我有用:创建一个类并定义静态MediaPlayer对象和静态方法(暂停,停止等)
您也可以覆盖活动类中的onPause方法并停止媒体播放器

答案 2 :(得分:0)

要停止播放,请在mp.pause()功能上调用onPause()。但是,您的 onStop()应该更像:

@Override
    protected void onStop() {
        super.onStop();        //  <<-------ENSURE onStop()
        mp.stop();
        mp.release();
    }

如果您的设备中有MENU和HOME按钮,则应在按下这些按钮后检查您的应用是否恢复。

Kf个