diff options
| author | Mike Lockwood <lockwood@android.com> | 2009-10-20 09:22:20 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2009-10-20 09:22:20 -0700 |
| commit | aa033b79714f458b47d7c3fbc45e9fe51194f533 (patch) | |
| tree | d6132f49f09fdd8acd555d6b9cd807efe89de4cf /core/res | |
| parent | 6ef38fb4262356c15cad8a1957ce58d2bb5b3de6 (diff) | |
| parent | d7786b41b78ba8592daea708b024b5a75e441992 (diff) | |
| download | frameworks_base-aa033b79714f458b47d7c3fbc45e9fe51194f533.zip frameworks_base-aa033b79714f458b47d7c3fbc45e9fe51194f533.tar.gz frameworks_base-aa033b79714f458b47d7c3fbc45e9fe51194f533.tar.bz2 | |
am d7786b41: Power Manager support for light sensor backlight management.
Merge commit 'd7786b41b78ba8592daea708b024b5a75e441992' into eclair-mr2
* commit 'd7786b41b78ba8592daea708b024b5a75e441992':
Power Manager support for light sensor backlight management.
Diffstat (limited to 'core/res')
| -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> |
