Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7cfc0ed2 authored by satok's avatar satok
Browse files

Add an ongoing notification to switch IME

Bug: 4671417
Change-Id: I2b9e955003c1f6703978824c947d5f322a039714
parent 75a0e9c0
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -299,6 +299,21 @@ public final class Settings {
    public static final String ACTION_INPUT_METHOD_SUBTYPE_SETTINGS =
            "android.settings.INPUT_METHOD_SUBTYPE_SETTINGS";

    /**
     * Activity Action: Show a dialog to select input method.
     * <p>
     * In some cases, a matching Activity may not exist, so ensure you
     * safeguard against this.
     * <p>
     * Input: Nothing.
     * <p>
     * Output: Nothing.
     * @hide
     */
    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
    public static final String ACTION_SHOW_INPUT_METHOD_PICKER =
            "android.settings.SHOW_INPUT_METHOD_PICKER";

    /**
     * Activity Action: Show settings to manage the user input dictionary.
     * <p>
+749 B
Loading image diff...
+749 B
Loading image diff...
+1 −0
Original line number Diff line number Diff line
@@ -16,4 +16,5 @@

<resources>
    <bool name="preferences_prefer_dual_pane">true</bool>
    <bool name="show_ongoing_ime_switcher">false</bool>
</resources>
+1 −0
Original line number Diff line number Diff line
@@ -19,4 +19,5 @@
    <bool name="action_bar_embed_tabs">false</bool>
    <bool name="split_action_bar_is_narrow">true</bool>
    <bool name="preferences_prefer_dual_pane">false</bool>
    <bool name="show_ongoing_ime_switcher">true</bool>
</resources>
Loading