Android : Android :Checking if audio is playing

on Saturday, August 16, 2014


i need to check if sounds from my application are playing.


i found some code but its only checking if audio is playing at the start of the activity;



AudioManager manager = (AudioManager)this.getSystemService(Context.AUDIO_SERVICE);
if(manager.isMusicActive())
{
//something
}


Is there somekind of Listener?


0 comments:

Post a Comment