dbbooh01
dbbooh01

Reputation: 105

Is there a way to tell if the Android MediaPlayer is currently playing a song?

I have looked into the MediaPlayer documentation for Android, but this seems to be primarily for playing media in a localized media player. I just want to be able to tell if music is playing in Android default Media Player.

Thanks

Upvotes: 1

Views: 3493

Answers (2)

kraymer
kraymer

Reputation: 3424

AudioManager::isMusicActive() Checks whether any music is active.

http://developer.android.com/reference/android/media/AudioManager.html

Upvotes: 1

Related Questions