How to stop audio from playing when back button is pressed?

后端 未结 3 1866
日久生厌
日久生厌 2021-01-16 11:26

Hi all here is my code:

   final ImageView imageView = (ImageView) findViewById(R.id.Image7);
   imageView.setImageResource(mFullSizeIds[position]);
   image         


        
3条回答
  •  清歌不尽
    2021-01-16 12:04

    Add

       @Override
        public void onBackPressed ()
        {
          if (mp != null)
            mp.stop();
          super.onBackPressed();
        }
    

    and

    @Override
    public void onPause ()
    {
      if (mp != null)
      {
        mp.pause();
        mp.stop();
      }
      super.onPause();
    }
    

提交回复
热议问题