Skip to content

detects when cancel is clicked

Gilles Bajart edited this page Dec 29, 2016 · 1 revision

In RadioListener.java, add:

void onRadioClosed();

in RadioPlayerService.java, add:

private void notifyPlayerClosed() { 
        for (RadioListener mRadioListener : mListenerList) {  
            mRadioListener.onRadioClosed();
        }
    }

in function stopFromNotification() inside the same java file, add:

notifyPlayerClosed();

after:

stop();

That's all 👍