minor changes to fix #1493
This commit is contained in:
parent
83dbe4fe07
commit
2302d7caef
|
@ -485,16 +485,20 @@ public abstract class MediaplayerActivity extends ActionBarActivity
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
showTimeLeft = !showTimeLeft;
|
showTimeLeft = !showTimeLeft;
|
||||||
Playable media = controller.getMedia();
|
Playable media = controller.getMedia();
|
||||||
if(showTimeLeft) {
|
if (media == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showTimeLeft) {
|
||||||
txtvLength.setText("-"+Converter.getDurationStringLong((media
|
txtvLength.setText("-"+Converter.getDurationStringLong((media
|
||||||
.getDuration()-media.getPosition())));
|
.getDuration()-media.getPosition())));
|
||||||
}else{
|
} else {
|
||||||
txtvLength.setText("-"+Converter.getDurationStringLong((media.getDuration())));
|
txtvLength.setText(Converter.getDurationStringLong((media.getDuration())));
|
||||||
}
|
}
|
||||||
|
|
||||||
SharedPreferences.Editor editor = prefs.edit();
|
SharedPreferences.Editor editor = prefs.edit();
|
||||||
editor.putBoolean(PREF_SHOW_TIME_LEFT,showTimeLeft);
|
editor.putBoolean(PREF_SHOW_TIME_LEFT,showTimeLeft);
|
||||||
editor.commit();
|
editor.apply();
|
||||||
Log.d("timeleft on click",showTimeLeft? "true":"false");
|
Log.d("timeleft on click",showTimeLeft? "true":"false");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue