diff options
author | AdrianDC <radian.dc@gmail.com> | 2015-10-20 17:05:32 +0200 |
---|---|---|
committer | AdrianDC <radian.dc@gmail.com> | 2015-10-30 20:29:48 +0100 |
commit | 4eb54afce03d91c36255d2f1104c93580b1aac7d (patch) | |
tree | 2d341c71bcb87381fd859a424b20a96e3a057fa3 /src | |
parent | 06b49a623701cd82c5988734749be2c4bc7c04b5 (diff) | |
download | vendor_cmsdk-4eb54afce03d91c36255d2f1104c93580b1aac7d.zip vendor_cmsdk-4eb54afce03d91c36255d2f1104c93580b1aac7d.tar.gz vendor_cmsdk-4eb54afce03d91c36255d2f1104c93580b1aac7d.tar.bz2 |
HighTouchSensitivity [1/2]: Add Settings preference
* Allows the HighTouchSensitivity (Glove mode)
value to be saved in the CMSettings provider
* Can be used in a device specific service to handle
the Glove mode in a way closer to the device's vendor
* Changes include :
android_packages_apps_Settings
cm_platform_sdk
Change-Id: Ib3cb8c4c67fb2397136ccfdf08cd8e7d938e898d
Signed-off-by: AdrianDC <radian.dc@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/java/cyanogenmod/providers/CMSettings.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/java/cyanogenmod/providers/CMSettings.java b/src/java/cyanogenmod/providers/CMSettings.java index 946aeba..2785b19 100644 --- a/src/java/cyanogenmod/providers/CMSettings.java +++ b/src/java/cyanogenmod/providers/CMSettings.java @@ -596,6 +596,14 @@ public final class CMSettings { public static final String NOTIFICATION_PLAY_QUEUE = "notification_play_queue"; /** + * Whether the HighTouchSensitivity is activated or not. + * 0 = off, 1 = on + * @hide + */ + public static final String HIGH_TOUCH_SENSITIVITY_ENABLE = + "high_touch_sensitivity_enable"; + + /** * Show the pending notification counts as overlays on the status bar * @hide */ |