diff options
author | guaiyihu <guaiyihu@foxmail.com> | 2018-06-07 23:30:57 +0800 |
---|---|---|
committer | Isaac Chen <isaacchen@isaacchen.cn> | 2018-07-19 00:00:09 +0000 |
commit | a20e7447db7e28646c9bd3a85c5a4617ed4b5401 (patch) | |
tree | 2deebde08601de363d09df9daa1c7a8143ff8009 | |
parent | f05bd896e3e7a50950b5dbd80e957cc0db30fc67 (diff) |
wayne: overlay: Show navigation bar
* Remove hardware key overlay
Change-Id: I2f493d954e55cdb116bb6a774f017f4c0342f121
-rw-r--r-- | overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml | 28 | ||||
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 4 |
2 files changed, 4 insertions, 28 deletions
diff --git a/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml b/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml index b2a3f2c..d6b848c 100644 --- a/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml +++ b/overlay-lineage/lineage-sdk/lineage/res/res/values/config.xml @@ -31,32 +31,4 @@ pulsating and RGB control would set this config to 75. --> <integer name="config_deviceLightCapabilities">104</integer> - <!-- Hardware keys present on the device, stored as a bit field. - This integer should equal the sum of the corresponding value for each - of the following keys present: - 1 - Home - 2 - Back - 4 - Menu - 8 - Assistant (search) - 16 - App switch - 32 - Camera - 64 - Volume rocker - For example, a device with Home, Back and Menu keys would set this - config to 7. --> - <integer name="config_deviceHardwareKeys">64</integer> - - <!-- Hardware keys present on the device with the ability to wake, stored as a bit field. - This integer should equal the sum of the corresponding value for each - of the following keys present: - 1 - Home - 2 - Back - 4 - Menu - 8 - Assistant (search) - 16 - App switch - 32 - Camera - 64 - Volume rocker - For example, a device with Home, Back and Menu keys would set this - config to 7. --> - <integer name="config_deviceHardwareWakeKeys">64</integer> - </resources> diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index a5131cd..97057c4 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -464,4 +464,8 @@ <!-- Default value for led color when battery is fully charged --> <integer name="config_notificationsBatteryFullARGB">0xFFFFFFFF</integer> + + <!-- Whether a software navigation bar should be shown. NOTE: in the future this may be + autodetected from the Configuration. --> + <bool name="config_showNavigationBar">true</bool> </resources> |