aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorProxy13 <mproxy1453@gmail.com>2016-06-17 03:32:29 +0000
committerProxy13 <mproxy1453@gmail.com>2016-06-17 03:32:29 +0000
commit4ecb4e4e0dc62e23fedca1795996ece6559bcd52 (patch)
tree38e88fab16d22e433a18332070565c09d410bff5
parent5d8b64892c4cf2f15006623252a382c78deb4d73 (diff)
Overlay updates
Change-Id: I657dc26796129e48b6e26fd22f0b34692178db0a
-rw-r--r--overlay/frameworks/base/core/res/res/values/config.xml37
1 files changed, 33 insertions, 4 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index bca56f5..c8b2d93 100644
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
-** Copyright 2012, The Android Open Source Project
+** Copyright 2013, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
@@ -55,13 +55,11 @@
<!-- 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">
<item>10</item>
@@ -115,11 +113,36 @@
<item>0</item>
</integer-array>
+ <!-- Defines the shutdown options shown in the reboot dialog. -->
+ <array name="shutdown_reboot_options" translatable="false">
+ <item>@string/reboot_reboot</item>
+ <item>@string/reboot_soft</item>
+ <item>@string/reboot_bootloader</item>
+ <item>@string/reboot_recovery</item>
+ <item>@string/reboot_download</item>
+ <item>@string/reboot_systemui</item>
+ </array>
+
+ <!-- Do not translate. Defines the shutdown actions passed to the kernel.
+ The first item should be empty for regular reboot. -->
+ <string-array name="shutdown_reboot_actions" translatable="false">
+ <item></item>
+ <item>soft_reboot</item>
+ <item>bootloader</item>
+ <item>recovery</item>
+ <item>download</item>
+ <item>systemui_reboot</item>
+ </string-array>
+
<!-- Minimum screen brightness allowed by the power manager. -->
<integer name="config_screenBrightnessDim">1</integer>
<!-- Screen brightness when dozing. -->
<integer name="config_screenBrightnessDoze">10</integer>
+
+ <!-- Minimum screen brightness setting allowed by the power manager.
+ The user is forbidden from setting the brightness below this level. -->
+ <integer name="config_screenBrightnessSettingMinimum">1</integer>
<!-- Dream of notifications -->
<string name="config_dozeComponent">com.android.systemui/com.android.systemui.doze.DozeService</string>
@@ -263,7 +286,6 @@
<!-- Minimum span needed to begin a touch scaling gesture.
If the span is equal to or greater than this size, a scaling gesture
will begin, where supported. (See android.view.ScaleGestureDetector)
-
This value has been tuned for the "geehrc" device. -->
<dimen name="config_minScalingSpan">35mm</dimen>
@@ -337,4 +359,11 @@
For example, a device with Home, Back and Menu keys would set this
config to 7. -->
<integer name="config_deviceHardwareKeys">71</integer>
+
+ <!-- Maximum number of supported users -->
+ <integer name="config_multiuserMaximumUsers">4</integer>
+ <!-- Whether Multiuser UI should be shown -->
+ <bool name="config_enableMultiUserUI">true</bool>
+
+
</resources>