• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • CasePointer

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    API gaps: an Android MediaPlayer example

    Jon Jensen

    By Jon Jensen
    March 2, 2011

    Many programming library APIs come with several levels of functionality, including the low-level but flexible way, and the high-level and simpler but limited way. I recently came across a textbook case of this in Android’s Java audio API, in the MediaPlayer class.

    We needed to play one of several custom Ogg Vorbis audio files in the Locate Express Android app to alert the user to various situations.

    Getting this going initially was fairly straightforward:

    In this simplified version of our PlaySound class we pass in the app resource ID of the sound file, and using the MediaPlayer.create() method is about as simple as can be.

    We keep a map of playing sound files so that external events can stop all playing sounds at once in a single call.

    We set an OnCompletionListener to clean up after ourselves if the sound plays to its end without interruption.

    Everything worked fine. Except for a pesky volume problem in real-world use. MediaPlayer uses Android’s default audio stream, which seemed to be STREAM_MUSIC. That plays the audio files fine, but has an interesting consequence during the actual playing: You can’t turn the volume down or up because the volume control outside of any specific media-playing contexts affects the STREAM_RING volume, not the one we’re playing on. Practically speaking, that’s a big problem because if the music stream was turned up all the way and the alert goes off at full volume in a public place, you have no way to turn it down! (Not a hypothetical situation, as you may guess …)

    Switching to STREAM_RING would be the obvious and hopefully simple thing to do, but calling the MediaPlayer.setAudioStreamType() method must be done before the MediaPlayer state machine enters the prepared state, which the MediaPlayer.create() does automatically. The convenience is our undoing!

    Switching over to the low-level way of doing things turns out to be a bit of a pain because:

    1. There’s no interface to pass an Android resource ID to one of the setDataSource() methods. Instead, we have to use a file path, file descriptor, or URI.

    2. The easiest of those options seemed to be a URI, and doing a little research, the format comes to light: android.resource://package.name/resource_id

    3. We have to handle IOException which wasn’t throwable using the higher-level MediaPlayer.create() invocation.

    Putting it all together, we end up with:

    It’s not so hard, but it’s not the one-line addition of MediaPlayer.setAudioStreamType() that I expected. This is an example of how the API lacking a MediaPlayer.setDataSource(Context, int) for the resource ID makes a simple change a lot more painful than it really needs to be—​especially since the URI variation could easily be handled behind the scenes by MediaPlayer.

    I later took a look at the Android MediaPlayer class source to see how the create() method does its work:

    Instead of creating a URI, the authors chose to go the file descriptor route, and they check for exceptions just like I had to. It seems more cumbersome to have to open the file, get the descriptor, and manually call getStartOffset() and getLength() in the call to setDataSource, but perhaps there’s some benefit there.

    This gap between low-level and high-level interfaces is another small lesson I’ll remember both when using and creating APIs.

    There’s one final unanswered question I had earlier: Was STREAM_MUSIC really the default output stream? Empirically that seemed to be the case, but I didn’t see it stated explicitly anywhere in the documentation. To find out for sure we have to delve into the native C++ code that backs MediaPlayer, in libmedia/mediaplayer.cpp, and sure enough, in the constructor the default is set:

    mStreamType = AudioSystem::MUSIC;
    

    My experience with Android so far has been that it’s well documented, but it’s been very nice to be able to read the source and see how the core libraries are implemented when needed.

    android java mobile api audio


    Comments