Back to project page speedofsound.
The source code is released under:
GNU General Public License
If you think the Android project speedofsound listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.codechunk.speedofsound.players; //from w ww . java 2 s . c om import android.content.Context; import android.content.Intent; public class LastFmAPIPlayer extends AndroidMusicPlayer { @Override public PlaybackAction getPlaybackAction(Context context, Intent intent) { String action = intent.getAction(); if (action.equals("fm.last.android.playbackcomplete")) return PlaybackAction.STOPPED; if (action.equals("fm.last.android.metachanged")) return PlaybackAction.CHANGED; return null; } }