How can I find out which track is currently playing in the default android music player or when the track changes? I have not been able to figure out how to connect to the MediaPlaybackService or setup my filters correctly.
I currently have this in my manifest which just displays a Toast notification.
Using xml Syntax Highlighting
- <receiver android:name=".MediaReceiver">
- <intent-filter>
- <action android:name="com.android.music.NowPlayingActivity" />
- </intent-filter>
- </receiver>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4
It wont run for com.android.music.NowPlayingActivity or com.android.music.MediaPlackbackActivity but it works for android.intent.action.WALLPAPER_CHANGED.
Thanks in advance.

