We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 👍