PlayerHater
PlayerHater copied to clipboard
A wrapper for the StageFright player on Android. Hate the player, not the game.
There seems to be a small bug where if you pause the player through the notification bar and then click the next button(to go to the next item in the...
``` mPlayButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if(mPlayerHater.getQueueLength() < 1){ mPlayerHater.enqueue(new MySong(.........)); mPlayerHater.play(mPlayerHater.getQueuePosition()); }else{ mPlayerHater.play(new MySong(.........)); } } }); ``` This one correctly adds the song to...
Nobody else is doing this. I don't know why.