Android how can play song for 30 seconds only in mediaPlayer

后端 未结 3 1207
迷失自我
迷失自我 2021-01-18 05:27

I am working on Android , I am creating a player for audio songs. I want to play a song only for just 30 seconds. After that, player must be closed. It should be start again

3条回答
  •  深忆病人
    2021-01-18 05:57

    use countdownTimer to complete your goal in which you can set countdown timer till 30 second manually. when countdown finish process it will go to finish method and execute finish method code ::

        CountDownTimer cntr_aCounter = new CountDownTimer(3000, 1000) {
            public void onTick(long millisUntilFinished) {
    
                mp_xmPlayer2.start();
            }
    
            public void onFinish() {
                //code fire after finish
                   mp_xmPlayer2.stop();
            }
            };cntr_aCounter.start();
    

提交回复
热议问题