Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
2a747f00
Commit
2a747f00
authored
4 years ago
by
Fiona Campbell
Committed by
Gerrit Code Review
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Persist screen brightness setting through upgrade"
parents
e581224c
2e8e9d39
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/java/com/android/internal/BrightnessSynchronizer.java
+23
-2
23 additions, 2 deletions
core/java/com/android/internal/BrightnessSynchronizer.java
with
23 additions
and
2 deletions
core/java/com/android/internal/BrightnessSynchronizer.java
+
23
−
2
View file @
2a747f00
...
...
@@ -36,7 +36,7 @@ import java.util.Queue;
* (new) system for storing the brightness. It has methods to convert between the two and also
* observes for when one of the settings is changed and syncs this with the other.
*/
public
class
BrightnessSynchronizer
{
public
class
BrightnessSynchronizer
{
private
static
final
int
MSG_UPDATE_FLOAT
=
1
;
private
static
final
int
MSG_UPDATE_INT
=
2
;
...
...
@@ -78,6 +78,26 @@ public class BrightnessSynchronizer{
mContext
=
context
;
mBrightnessSyncObserver
=
new
BrightnessSyncObserver
(
mHandler
);
mBrightnessSyncObserver
.
startObserving
();
// It is possible for the system to start up with the int and float values not
// synchronized. So we force an update to the int value, since float is the source
// of truth. Fallback to int value, if float is invalid. If both are invalid, use default
// float value from config.
final
float
currentFloatBrightness
=
getScreenBrightnessFloat
(
context
);
final
int
currentIntBrightness
=
getScreenBrightnessInt
(
context
);
if
(!
Float
.
isNaN
(
currentFloatBrightness
))
{
updateBrightnessIntFromFloat
(
currentFloatBrightness
);
}
else
if
(
currentIntBrightness
!=
-
1
)
{
updateBrightnessFloatFromInt
(
currentIntBrightness
);
}
else
{
final
float
defaultBrightness
=
mContext
.
getResources
().
getFloat
(
com
.
android
.
internal
.
R
.
dimen
.
config_screenBrightnessSettingDefaultFloat
);
Settings
.
System
.
putFloatForUser
(
mContext
.
getContentResolver
(),
Settings
.
System
.
SCREEN_BRIGHTNESS_FLOAT
,
defaultBrightness
,
UserHandle
.
USER_CURRENT
);
}
}
/**
...
...
@@ -166,7 +186,8 @@ public class BrightnessSynchronizer{
private
static
int
getScreenBrightnessInt
(
Context
context
)
{
return
Settings
.
System
.
getIntForUser
(
context
.
getContentResolver
(),
Settings
.
System
.
SCREEN_BRIGHTNESS
,
0
,
UserHandle
.
USER_CURRENT
);
Settings
.
System
.
SCREEN_BRIGHTNESS
,
PowerManager
.
BRIGHTNESS_INVALID
,
UserHandle
.
USER_CURRENT
);
}
private
float
mPreferredSettingValue
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment