单击新活动时如何停止第一个活动的声音

问题描述

当我从列表中选择一首歌曲时,我正在使用Media Player App播放,但是当我选择另一首歌曲时,拳头不会停止播放。 我尝试了finish();但是没用。 它的一个Player Layout资源文件和多个java类

 public void s2 (View view){
        Intent intent = new Intent(s1.this,s2.class);
        startActivity(intent);
       
        
        this.finish();
}

解决方法

如果您正在使用MediaPlayer类来播放歌曲,则应将player.stop()调用添加到活动析构函数中。