Fix initial brightness value
This commit is contained in:
parent
ec45d4a729
commit
51f2efd48c
1 changed files with 8 additions and 0 deletions
|
@ -909,6 +909,14 @@ public final class MainVideoPlayer extends AppCompatActivity
|
||||||
final float currentVolumeNormalized = (float) getAudioReactor().getVolume() / getAudioReactor().getMaxVolume();
|
final float currentVolumeNormalized = (float) getAudioReactor().getVolume() / getAudioReactor().getMaxVolume();
|
||||||
volumeProgressBar.setProgress((int) (volumeProgressBar.getMax() * currentVolumeNormalized));
|
volumeProgressBar.setProgress((int) (volumeProgressBar.getMax() * currentVolumeNormalized));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final float screenBrightness = getWindow().getAttributes().screenBrightness;
|
||||||
|
brightnessProgressBar.setProgress((int) (brightnessProgressBar.getMax() * screenBrightness));
|
||||||
|
|
||||||
|
if (DEBUG) Log.d(TAG, "setInitialGestureValues: volumeProgressBar.getProgress() ["
|
||||||
|
+ volumeProgressBar.getProgress() + "] "
|
||||||
|
+ "brightnessProgressBar.getProgress() ["
|
||||||
|
+ brightnessProgressBar.getProgress() + "]");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue