diff options
Diffstat (limited to 'core/java/android/provider/Settings.java')
| -rw-r--r-- | core/java/android/provider/Settings.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 6ecd103..db2598f 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2884,6 +2884,18 @@ public final class Settings { public static final String POWER_MENU_SILENT_ENABLED = "power_menu_silent_enabled"; /** + * Whether to unlock the screen with the home key. The value is boolean (1 or 0). + * @hide + */ + public static final String HOME_UNLOCK_SCREEN = "home_unlock_screen"; + + /** + * Whether the lockscreen vibrate should be enabled. + * @hide + */ + public static final String LOCKSCREEN_VIBRATE_ENABLED = "lockscreen.vibrate_enabled"; + + /** * Settings to backup. This is here so that it's in the same place as the settings * keys and easy to update. * @@ -2967,6 +2979,7 @@ public final class Settings { POWER_MENU_AIRPLANE_ENABLED, POWER_MENU_SILENT_ENABLED, POWER_MENU_USER_ENABLED, + LOCKSCREEN_VIBRATE_ENABLED, }; // Settings moved to Settings.Secure |
