Recently played is now history. Songs are always added to the history but their play count will be only increased if they were played at least half. This makes the top tracks much more accurate.

This commit is contained in:
Karim Abou Zeid 2015-09-12 15:14:01 +02:00
commit cf4ed6d5c0
10 changed files with 163 additions and 31 deletions

View file

@ -6,17 +6,17 @@ import android.support.annotation.NonNull;
import com.kabouzeid.gramophone.R;
import com.kabouzeid.gramophone.loader.TopAndRecentlyPlayedTracksLoader;
import com.kabouzeid.gramophone.model.Song;
import com.kabouzeid.gramophone.provider.RecentlyPlayedStore;
import com.kabouzeid.gramophone.provider.HistoryStore;
import java.util.ArrayList;
/**
* @author Karim Abou Zeid (kabouzeid)
*/
public class RecentlyPlayedPlaylist extends AbsSmartPlaylist {
public class HistoryPlaylist extends AbsSmartPlaylist {
public RecentlyPlayedPlaylist(@NonNull Context context) {
super(context.getString(R.string.recently_played), R.drawable.ic_access_time_white_24dp);
public HistoryPlaylist(@NonNull Context context) {
super(context.getString(R.string.history), R.drawable.ic_access_time_white_24dp);
}
@NonNull
@ -27,6 +27,6 @@ public class RecentlyPlayedPlaylist extends AbsSmartPlaylist {
@Override
public void clear(@NonNull Context context) {
RecentlyPlayedStore.getInstance(context).clear();
HistoryStore.getInstance(context).clear();
}
}