Loading common/src/com/android/inputmethod/latin/common/Constants.java +2 −0 Original line number Diff line number Diff line Loading @@ -247,6 +247,7 @@ public final class Constants { public static final int CODE_ALPHA_FROM_EMOJI = -14; // Code value representing the code is not specified. public static final int CODE_UNSPECIFIED = -15; public static final int CODE_CLIPBOARD_PASTE = -16; public static boolean isLetterCode(final int code) { return code >= CODE_SPACE; Loading @@ -269,6 +270,7 @@ public final class Constants { case CODE_SHIFT_ENTER: return "shiftEnter"; case CODE_ALPHA_FROM_EMOJI: return "alpha"; case CODE_UNSPECIFIED: return "unspec"; case CODE_CLIPBOARD_PASTE: return "clipboard_paste"; case CODE_TAB: return "tab"; case CODE_ENTER: return "enter"; case CODE_SPACE: return "space"; Loading java/res/drawable/sym_keyboard_clipboard_paste_lxx_dark.xml 0 → 100644 +14 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- SPDX-FileCopyrightText: Material Design Authors / Google LLC SPDX-License-Identifier: Apache-2.0 --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#CCFFFFFF" android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/> </vector> java/res/drawable/sym_keyboard_clipboard_paste_lxx_light.xml 0 → 100644 +14 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- SPDX-FileCopyrightText: Material Design Authors / Google LLC SPDX-License-Identifier: Apache-2.0 --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#37474F" android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/> </vector> java/res/drawable/sym_keyboard_clipboard_paste_you.xml 0 → 100644 +14 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- SPDX-FileCopyrightText: Material Design Authors / Google LLC SPDX-License-Identifier: Apache-2.0 --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="@color/icon_color_you" android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/> </vector> java/res/values-night/themes-you-colors.xml +3 −3 Original line number Diff line number Diff line Loading @@ -6,9 +6,9 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android"> <color name="key_hint_letter_color_you">@android:color/system_neutral1_400</color> <!-- Suggestion bar --> <color name="typed_word_color_you">@android:color/system_neutral1_50</color> <color name="auto_correct_color_you">@android:color/system_neutral1_50</color> <color name="suggested_word_color_you">@android:color/system_neutral1_50</color> <color name="typed_word_color_you">@android:color/system_on_background_dark</color> <color name="auto_correct_color_you">@android:color/system_on_background_dark</color> <color name="suggested_word_color_you">@android:color/system_on_background_dark</color> <!-- Gesture input --> <color name="gesture_trail_color_you">@android:color/system_accent1_300</color> <color name="gesture_floating_preview_text_color_you">@android:color/system_neutral1_50</color> Loading Loading
common/src/com/android/inputmethod/latin/common/Constants.java +2 −0 Original line number Diff line number Diff line Loading @@ -247,6 +247,7 @@ public final class Constants { public static final int CODE_ALPHA_FROM_EMOJI = -14; // Code value representing the code is not specified. public static final int CODE_UNSPECIFIED = -15; public static final int CODE_CLIPBOARD_PASTE = -16; public static boolean isLetterCode(final int code) { return code >= CODE_SPACE; Loading @@ -269,6 +270,7 @@ public final class Constants { case CODE_SHIFT_ENTER: return "shiftEnter"; case CODE_ALPHA_FROM_EMOJI: return "alpha"; case CODE_UNSPECIFIED: return "unspec"; case CODE_CLIPBOARD_PASTE: return "clipboard_paste"; case CODE_TAB: return "tab"; case CODE_ENTER: return "enter"; case CODE_SPACE: return "space"; Loading
java/res/drawable/sym_keyboard_clipboard_paste_lxx_dark.xml 0 → 100644 +14 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- SPDX-FileCopyrightText: Material Design Authors / Google LLC SPDX-License-Identifier: Apache-2.0 --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#CCFFFFFF" android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/> </vector>
java/res/drawable/sym_keyboard_clipboard_paste_lxx_light.xml 0 → 100644 +14 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- SPDX-FileCopyrightText: Material Design Authors / Google LLC SPDX-License-Identifier: Apache-2.0 --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#37474F" android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/> </vector>
java/res/drawable/sym_keyboard_clipboard_paste_you.xml 0 → 100644 +14 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- SPDX-FileCopyrightText: Material Design Authors / Google LLC SPDX-License-Identifier: Apache-2.0 --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="@color/icon_color_you" android:pathData="M19,2h-4.18C14.4,0.84 13.3,0 12,0c-1.3,0 -2.4,0.84 -2.82,2L5,2c-1.1,0 -2,0.9 -2,2v16c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2L21,4c0,-1.1 -0.9,-2 -2,-2zM12,2c0.55,0 1,0.45 1,1s-0.45,1 -1,1 -1,-0.45 -1,-1 0.45,-1 1,-1zM19,20L5,20L5,4h2v3h10L17,4h2v16z"/> </vector>
java/res/values-night/themes-you-colors.xml +3 −3 Original line number Diff line number Diff line Loading @@ -6,9 +6,9 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android"> <color name="key_hint_letter_color_you">@android:color/system_neutral1_400</color> <!-- Suggestion bar --> <color name="typed_word_color_you">@android:color/system_neutral1_50</color> <color name="auto_correct_color_you">@android:color/system_neutral1_50</color> <color name="suggested_word_color_you">@android:color/system_neutral1_50</color> <color name="typed_word_color_you">@android:color/system_on_background_dark</color> <color name="auto_correct_color_you">@android:color/system_on_background_dark</color> <color name="suggested_word_color_you">@android:color/system_on_background_dark</color> <!-- Gesture input --> <color name="gesture_trail_color_you">@android:color/system_accent1_300</color> <color name="gesture_floating_preview_text_color_you">@android:color/system_neutral1_50</color> Loading