Some time music does not stop android

后端 未结 1 607
南笙
南笙 2020-12-12 03:41

There is an function which is called on onCreate method of playing music...

    public void playBeep() {
    try {

        if (m.isPlaying()) {
                     


        
相关标签:
1条回答
  • 2020-12-12 03:58

    Try with this :

    @Override
    protected void onPause() {
        super.onPause(); 
        isBeeping = false;
        if (m != null)
           m.release();       
    }
    

    Thanks.

    0 讨论(0)
提交回复
热议问题