Added a now playing sticky broadcast to support last.fm scrobbling and musixmatch.
This commit is contained in:
parent
8c339ca57d
commit
bccf4fae5c
2 changed files with 27 additions and 4 deletions
|
|
@ -1,20 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.kabouzeid.gramophone">
|
||||
<manifest package="com.kabouzeid.gramophone"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
||||
|
||||
<application
|
||||
android:name=".App"
|
||||
android:allowBackup="true"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/Theme.MaterialMusic.Light"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.MaterialMusic.Light"
|
||||
tools:ignore="UnusedAttribute">
|
||||
|
||||
<activity
|
||||
|
|
|
|||
|
|
@ -52,6 +52,8 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
public static final String ACTION_SKIP = "com.kabouzeid.gramophone.action.SKIP";
|
||||
public static final String ACTION_REWIND = "com.kabouzeid.gramophone.action.REWIND";
|
||||
public static final String ACTION_QUIT = "com.kabouzeid.gramophone.action.QUIT";
|
||||
public static final String META_CHANGED = "com.android.music.metachanged";
|
||||
public static final String PLAYSTATE_CHANGED = "com.android.music.playstatechanged";
|
||||
public static final int SHUFFLE_MODE_NONE = 0;
|
||||
public static final int SHUFFLE_MODE_SHUFFLE = 1;
|
||||
public static final int REPEAT_MODE_NONE = 0;
|
||||
|
|
@ -227,6 +229,7 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
MusicPlayerWidget.updateWidgetsPlayState(this, isPlaying());
|
||||
remoteControlClient.setPlaybackState(RemoteControlClient.PLAYSTATE_STOPPED);
|
||||
notifyOnMusicRemoteEventListeners(MusicRemoteEvent.STOP);
|
||||
notifyChange(PLAYSTATE_CHANGED);
|
||||
}
|
||||
|
||||
public boolean isPlaying() {
|
||||
|
|
@ -277,6 +280,7 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
MusicPlayerWidget.updateWidgetsPlayState(this, isPlaying());
|
||||
remoteControlClient.setPlaybackState(RemoteControlClient.PLAYSTATE_STOPPED);
|
||||
notifyOnMusicRemoteEventListeners(MusicRemoteEvent.STOP);
|
||||
notifyChange(PLAYSTATE_CHANGED);
|
||||
} else {
|
||||
acquireWakeLock(30000);
|
||||
playNextSong(false);
|
||||
|
|
@ -313,6 +317,7 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
playingNotificationHelper.updatePlayState(false);
|
||||
MusicPlayerWidget.updateWidgetsPlayState(this, false);
|
||||
remoteControlClient.setPlaybackState(RemoteControlClient.PLAYSTATE_STOPPED);
|
||||
notifyChange(PLAYSTATE_CHANGED);
|
||||
|
||||
Toast.makeText(getApplicationContext(), getResources().getString(R.string.unplayable_file), Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
|
|
@ -321,9 +326,11 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
updateNotification();
|
||||
updateWidgets();
|
||||
updateRemoteControlClient();
|
||||
notifyChange(META_CHANGED);
|
||||
} else {
|
||||
playingNotificationHelper.updatePlayState(false);
|
||||
MusicPlayerWidget.updateWidgetsPlayState(this, false);
|
||||
notifyChange(PLAYSTATE_CHANGED);
|
||||
}
|
||||
}
|
||||
notifyOnMusicRemoteEventListeners(MusicRemoteEvent.TRACK_CHANGED);
|
||||
|
|
@ -481,6 +488,7 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
MusicPlayerWidget.updateWidgetsPlayState(this, isPlaying());
|
||||
remoteControlClient.setPlaybackState(RemoteControlClient.PLAYSTATE_PLAYING);
|
||||
notifyOnMusicRemoteEventListeners(MusicRemoteEvent.PLAY);
|
||||
notifyChange(PLAYSTATE_CHANGED);
|
||||
savePosition();
|
||||
releaseWakeLock();
|
||||
}
|
||||
|
|
@ -645,6 +653,7 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
MusicPlayerWidget.updateWidgetsPlayState(this, isPlaying());
|
||||
remoteControlClient.setPlaybackState(RemoteControlClient.PLAYSTATE_PAUSED);
|
||||
notifyOnMusicRemoteEventListeners(MusicRemoteEvent.PAUSE);
|
||||
notifyChange(PLAYSTATE_CHANGED);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -657,6 +666,7 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
MusicPlayerWidget.updateWidgetsPlayState(this, isPlaying());
|
||||
remoteControlClient.setPlaybackState(RemoteControlClient.PLAYSTATE_PLAYING);
|
||||
notifyOnMusicRemoteEventListeners(MusicRemoteEvent.RESUME);
|
||||
notifyChange(PLAYSTATE_CHANGED);
|
||||
} else {
|
||||
playSong();
|
||||
}
|
||||
|
|
@ -781,6 +791,18 @@ public class MusicService extends Service implements MediaPlayer.OnPreparedListe
|
|||
}
|
||||
}
|
||||
|
||||
private void notifyChange(final String what) {
|
||||
//to let other apps know whats playing. i.E. last.fm (scrobbling) or musixmatch
|
||||
final Song currentSong = playingQueue.get(getPosition());
|
||||
final Intent intent = new Intent(what);
|
||||
intent.putExtra("id", currentSong.id);
|
||||
intent.putExtra("artist", currentSong.artistName);
|
||||
intent.putExtra("album", currentSong.albumName);
|
||||
intent.putExtra("track", currentSong.title);
|
||||
intent.putExtra("playing", isPlaying());
|
||||
sendStickyBroadcast(intent);
|
||||
}
|
||||
|
||||
public int getAudioSessionId() {
|
||||
if (player == null)
|
||||
return AudioEffect.ERROR_BAD_VALUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue