How to get the music player status in Android?
Can anyone tell me how to get the status of the music player in Android? I want know whether 开发者_开发问答the music player is paused or playing. Please help me.
MediaPlayer player = new MediaPlayer();
boolean isPlaying = player.isPlaying();
:)
精彩评论