diff options
| author | Jamie Garside <jgarside@google.com> | 2021-02-03 16:53:16 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-02-03 16:53:16 +0000 |
| commit | 1ddf2b3ac4bbf19006940d30faf4b81a765d2a53 (patch) | |
| tree | b42d4121ad2d4c0aa3f5fe05986705de31aa31f6 /core/java | |
| parent | 09462b68e2fd803ba7e33aeb153a4f269d6d1bd6 (diff) | |
| parent | 6c5bfcb40fdcf2499098daad37577e7ead67699a (diff) | |
Merge "Update the bouncer to be able to move to either side of a wide screen." into sc-dev
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/provider/Settings.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index a29fcb17b083..9603f4d43d8b 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -13580,6 +13580,28 @@ public final class Settings { public static final String POWER_BUTTON_VERY_LONG_PRESS = "power_button_very_long_press"; + + /** + * Keyguard should be on the left hand side of the screen, for wide screen layouts. + * + * @hide + */ + public static final int ONE_HANDED_KEYGUARD_SIDE_LEFT = 0; + + /** + * Keyguard should be on the right hand side of the screen, for wide screen layouts. + * + * @hide + */ + public static final int ONE_HANDED_KEYGUARD_SIDE_RIGHT = 1; + /** + * In one handed mode, which side the keyguard should be on. Allowable values are one of + * the ONE_HANDED_KEYGUARD_SIDE_* constants. + * + * @hide + */ + public static final String ONE_HANDED_KEYGUARD_SIDE = "one_handed_keyguard_side"; + /** * Keys we no longer back up under the current schema, but want to continue to * process when restoring historical backup datasets. |
