summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2009-10-20 09:46:40 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-10-20 09:46:40 -0700
commit623b6ade7217cb738c118601672806992027e6c8 (patch)
tree7ae12a1c7d663d8e5716672ae592a3fc835cdc5e /core
parent788cfe3470fde1f2dcff3b1fbd02ac6abe698b66 (diff)
parentb0219b5aadd9271daa316c47202a849e02adeb7f (diff)
downloadframeworks_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.xml34
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>