Merge pull request #1496 from TomHennen/fixpr1493

minor changes to fix #1493
This commit is contained in:
Tom Hennen 2015-12-28 12:26:53 -05:00
commit 4ceaae0215

View File

@ -485,16 +485,20 @@ public abstract class MediaplayerActivity extends ActionBarActivity
public void onClick(View v) {
showTimeLeft = !showTimeLeft;
Playable media = controller.getMedia();
if(showTimeLeft) {
if (media == null) {
return;
}
if (showTimeLeft) {
txtvLength.setText("-"+Converter.getDurationStringLong((media
.getDuration()-media.getPosition())));
}else{
txtvLength.setText("-"+Converter.getDurationStringLong((media.getDuration())));
} else {
txtvLength.setText(Converter.getDurationStringLong((media.getDuration())));
}
SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean(PREF_SHOW_TIME_LEFT,showTimeLeft);
editor.commit();
editor.apply();
Log.d("timeleft on click",showTimeLeft? "true":"false");
}
});