That is exactly what I want to do, but I find it difficult to figure out which intents drive the individual media players
On Dec 21, 10:34 am, Lance Nanek <[email protected]> wrote: > I've seen people firing broadcasts that look the same as the media > buttons on some headsets. That might be a workable alternative to > using the service if you don't need anything special. > > On Dec 20, 3:51 pm, Mark Murphy <[email protected]> wrote: > > > > > Please understand that this is not part of the Android SDK. According > > to the source code, it is not exported, and therefore is not available > > outside of its process. > > > On Mon, Dec 20, 2010 at 3:43 PM, neuromit <[email protected]> wrote: > > > I'm trying to setup a service connection to control the stock android > > > media player. This works great under 2.1 and 2.2. However, when I > > > tried to run my application on the 2.3 emulator my application crashes > > > and I get the following error: > > > > ERROR/AndroidRuntime(466): Caused by: java.lang.SecurityException: Not > > > allowed to bind to service Intent > > > {cmp=com.android.music/.MediaPlaybackService } > > > > Have the permissions to bind to the IMediaServiceConnetion been > > > revoked for gingerbread? > > > > Here is the code I'm running from my class that is a child of > > > ServiceConnection > > > > Intent i = new Intent(); > > > i.setClassName("com.android.music", > > > "com.android.music.MediaPlaybackService"); > > > a.bindService(i, (ServiceConnection) this, 0); > > > > -- > > > You received this message because you are subscribed to the Google > > > Groups "Android Developers" group. > > > To post to this group, send email to [email protected] > > > To unsubscribe from this group, send email to > > > [email protected] > > > For more options, visit this group at > > >http://groups.google.com/group/android-developers?hl=en > > > -- > > Mark Murphy (a Commons > > Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy > > > _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.9 > > Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

