diff options
-rw-r--r-- | api/current.xml | 11 | ||||
-rw-r--r-- | core/java/android/provider/Settings.java | 6 |
2 files changed, 17 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index 2c971ec..c9371d0 100644 --- a/api/current.xml +++ b/api/current.xml @@ -162670,6 +162670,17 @@ visibility="public" > </field> +<field name="INPUT_METHOD_SELECTOR_VISIBILITY" + type="java.lang.String" + transient="false" + volatile="false" + value=""input_method_selector_visibility"" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="INSTALL_NON_MARKET_APPS" type="java.lang.String" transient="false" diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 1e80da7..873674d 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2410,6 +2410,12 @@ public final class Settings { "input_methods_subtype_history"; /** + * Setting to record the visibility of input method selector + */ + public static final String INPUT_METHOD_SELECTOR_VISIBILITY = + "input_method_selector_visibility"; + + /** * Whether the device has been provisioned (0 = false, 1 = true) */ public static final String DEVICE_PROVISIONED = "device_provisioned"; |