diff options
| author | Mike Lockwood <lockwood@android.com> | 2009-10-20 09:46:40 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2009-10-20 09:46:40 -0700 |
| commit | 623b6ade7217cb738c118601672806992027e6c8 (patch) | |
| tree | 7ae12a1c7d663d8e5716672ae592a3fc835cdc5e /core | |
| parent | 788cfe3470fde1f2dcff3b1fbd02ac6abe698b66 (diff) | |
| parent | b0219b5aadd9271daa316c47202a849e02adeb7f (diff) | |
| download | frameworks_base-623b6ade7217cb738c118601672806992027e6c8.zip frameworks_base-623b6ade7217cb738c118601672806992027e6c8.tar.gz frameworks_base-623b6ade7217cb738c118601672806992027e6c8.tar.bz2 | |
am b0219b5a: am aa033b79: am d7786b41: Power Manager support for light sensor backlight management.
Merge commit 'b0219b5aadd9271daa316c47202a849e02adeb7f'
* commit 'b0219b5aadd9271daa316c47202a849e02adeb7f':
Power Manager support for light sensor backlight management.
Diffstat (limited to 'core')
| -rw-r--r-- | core/res/res/values/config.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 780f611..274ec2b 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -168,4 +168,38 @@ <!-- Control whether status bar should distinguish HSPA data icon form UMTS data icon on devices --> <bool name="config_hspa_data_distinguishable">false</bool> + + <!-- Array of light sensor LUX values to define our levels for auto backlight brightness support. + The N entries of this array define N + 1 zones as follows: + + Zone 0: 0 <= LUX < array[0] + Zone 1: array[0] <= LUX < array[1] + ... + Zone N: array[N - 1] <= LUX < array[N] + Zone N + 1: array[N] <= LUX < infinity + + Must be overridden in platform specific overlays --> + <integer-array name="config_autoBrightnessLevels"> + </integer-array> + + <!-- Array of output values for LCD backlight corresponding to the LUX values + in the config_autoBrightnessLevels array. This array should have size one greater + than the size of the config_autoBrightnessLevels array. + This must be overridden in platform specific overlays --> + <integer-array name="config_autoBrightnessLcdBacklightValues"> + </integer-array> + + <!-- Array of output values for button backlight corresponding to the LUX values + in the config_autoBrightnessLevels array. This array should have size one greater + than the size of the config_autoBrightnessLevels array. + This must be overridden in platform specific overlays --> + <integer-array name="config_autoBrightnessButtonBacklightValues"> + </integer-array> + + <!-- Array of output values for keyboard backlight corresponding to the LUX values + in the config_autoBrightnessLevels array. This array should have size one greater + than the size of the config_autoBrightnessLevels array. + This must be overridden in platform specific overlays --> + <integer-array name="config_autoBrightnessKeyboardBacklightValues"> + </integer-array> </resources> |
