Play background music in all activities of Android app

后端 未结 5 929
隐瞒了意图╮
隐瞒了意图╮ 2020-12-07 01:03

I spend about 20 hours until now and my problem there still is . I am creating an android application that has several Activities (mainMenu , aboutUs,setting). I followed th

5条回答
  •  广开言路
    2020-12-07 01:54

     @Override
        public void onCreate (){
          super.onCreate();
    
           Player = MediaPlayer.create(this, R.raw.jingle);
           mPlayer.setOnErrorListener(this);
    
           if(mPlayer!= null)
            {
                mPlayer.setLooping(true);
                mPlayer.setVolume(100,100);
            }
    
    
            mPlayer.setOnErrorListener(new OnErrorListener() {
    
          public boolean onError(MediaPlayer mp, int what, int
              extra){
    
                onError(mPlayer, what, extra);
                return true;
            }
              });
        }
    

提交回复
热议问题