inicialize the volume SeekBars on audio controls to the values on UserPreferences
This commit is contained in:
parent
13f5b09d56
commit
c878bc4e87
@ -479,9 +479,9 @@ public abstract class MediaplayerActivity extends AppCompatActivity implements O
|
||||
barPlaybackSpeed.setProgress((int) (20 * currentSpeed) - 10);
|
||||
|
||||
final SeekBar barLeftVolume = (SeekBar) dialog.findViewById(R.id.volume_left);
|
||||
barLeftVolume.setProgress(100);
|
||||
barLeftVolume.setProgress(UserPreferences.getLeftVolumePercentage());
|
||||
final SeekBar barRightVolume = (SeekBar) dialog.findViewById(R.id.volume_right);
|
||||
barRightVolume.setProgress(100);
|
||||
barRightVolume.setProgress(UserPreferences.getRightVolumePercentage());
|
||||
final CheckBox stereoToMono = (CheckBox) dialog.findViewById(R.id.stereo_to_mono);
|
||||
stereoToMono.setChecked(UserPreferences.stereoToMono());
|
||||
if (controller != null && !controller.canDownmix()) {
|
||||
|
@ -269,6 +269,14 @@ public class UserPreferences {
|
||||
return Converter.getVolumeFromPercentage(volume);
|
||||
}
|
||||
|
||||
public static int getLeftVolumePercentage() {
|
||||
return prefs.getInt(PREF_LEFT_VOLUME, 100);
|
||||
}
|
||||
|
||||
public static int getRightVolumePercentage() {
|
||||
return prefs.getInt(PREF_RIGHT_VOLUME, 100);
|
||||
}
|
||||
|
||||
public static boolean shouldPauseForFocusLoss() {
|
||||
return prefs.getBoolean(PREF_PAUSE_PLAYBACK_FOR_FOCUS_LOSS, false);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user