1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-09-28 15:08:50 +00:00

Get brightness from settings if screenBrightness is set to auto

This commit is contained in:
Alexey Dubrov 2020-02-17 12:11:00 +03:00
parent 69934dee52
commit e3a891688b
No known key found for this signature in database
GPG Key ID: 4F516863E4371E21

View File

@ -910,7 +910,11 @@ public final class MainVideoPlayer extends AppCompatActivity
volumeProgressBar.setProgress((int) (volumeProgressBar.getMax() * currentVolumeNormalized));
}
final float screenBrightness = getWindow().getAttributes().screenBrightness;
float screenBrightness = getWindow().getAttributes().screenBrightness;
if (screenBrightness < 0)
screenBrightness = Settings.System.getInt(getContentResolver(),
Settings.System.SCREEN_BRIGHTNESS, 0) / 255.0f;
brightnessProgressBar.setProgress((int) (brightnessProgressBar.getMax() * screenBrightness));
if (DEBUG) Log.d(TAG, "setInitialGestureValues: volumeProgressBar.getProgress() ["