diff options
author | Dongwon Kang <dwkang@google.com> | 2014-08-07 22:51:47 -0700 |
---|---|---|
committer | Dongwon Kang <dwkang@google.com> | 2014-08-08 21:36:50 +0000 |
commit | 4d933a0ef0b436dc2d1dc79ef7ce4a997616929b (patch) | |
tree | e7547397139b01f5ca0f2f74e3c6f7070e6ec9f3 /core/java/android/provider | |
parent | 4b4038a028835f47888886184d845f27bcc2c7e8 (diff) | |
download | frameworks_base-4d933a0ef0b436dc2d1dc79ef7ce4a997616929b.zip frameworks_base-4d933a0ef0b436dc2d1dc79ef7ce4a997616929b.tar.gz frameworks_base-4d933a0ef0b436dc2d1dc79ef7ce4a997616929b.tar.bz2 |
TIF: introducing TvInputSettings for put/getting user preferences from Settings.
Reference:
- Settings.Secure.ENABLED_INPUT_METHODS
- InputMethodSettings
Bug: 16876078
Change-Id: I72c1770517052188694f21c10da383338edc8ee2
Diffstat (limited to 'core/java/android/provider')
-rw-r--r-- | core/java/android/provider/Settings.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 733ab32..23b23af 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -4739,6 +4739,23 @@ public final class Settings { "lock_screen_show_notifications"; /** + * List of TV inputs that are currently hidden. This is a string + * containing the IDs of all hidden TV inputs. Each ID is separated by ':'. + * + * @hide + */ + public static final String TV_INPUT_HIDDEN_INPUTS = "tv_input_hidden_inputs"; + + /** + * List of custom TV input labels. This is a string containing <TV input id, custom name> + * pairs. Each pair is separated by ':' and TV input id and custom name are separated by + * ','. + * + * @hide + */ + public static final String TV_INPUT_CUSTOM_LABELS = "tv_input_custom_labels"; + + /** * This are the settings to be backed up. * * NOTE: Settings are backed up and restored in the order they appear |