diff options
author | 2014-09-03 16:29:01 +0000 | |
---|---|---|
committer | 2014-09-03 16:29:01 +0000 | |
commit | ec7d67529e0dd4e5bf87e3b96c4b78db44adb96f (patch) | |
tree | ab7e6dd29d5d5f07cf35e9cdcd68e30db471ced1 /java/src | |
parent | 2a7a5740e929503a0aca23f376175a9c118b7a83 (diff) | |
parent | 5a9c9649db0e31eb8aa6a447dbde49e513933da3 (diff) | |
download | latinime-ec7d67529e0dd4e5bf87e3b96c4b78db44adb96f.tar.gz latinime-ec7d67529e0dd4e5bf87e3b96c4b78db44adb96f.tar.xz latinime-ec7d67529e0dd4e5bf87e3b96c4b78db44adb96f.zip |
am 5a9c9649: Removes "customAction" value from Key.backgroundType attribute
* commit '5a9c9649db0e31eb8aa6a447dbde49e513933da3':
Removes "customAction" value from Key.backgroundType attribute
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/Key.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/Key.java b/java/src/com/android/inputmethod/keyboard/Key.java index afcb3b66b..5b090d924 100644 --- a/java/src/com/android/inputmethod/keyboard/Key.java +++ b/java/src/com/android/inputmethod/keyboard/Key.java @@ -139,7 +139,6 @@ public class Key implements Comparable<Key> { public static final int BACKGROUND_TYPE_STICKY_OFF = 3; public static final int BACKGROUND_TYPE_STICKY_ON = 4; public static final int BACKGROUND_TYPE_ACTION = 5; - public static final int BACKGROUND_TYPE_CUSTOM_ACTION = 6; private final int mActionFlags; private static final int ACTION_FLAGS_IS_REPEATABLE = 0x01; @@ -506,7 +505,6 @@ public class Key implements Comparable<Key> { case BACKGROUND_TYPE_STICKY_OFF: return "stickyOff"; case BACKGROUND_TYPE_STICKY_ON: return "stickyOn"; case BACKGROUND_TYPE_ACTION: return "action"; - case BACKGROUND_TYPE_CUSTOM_ACTION: return "customAction"; default: return null; } } @@ -873,8 +871,6 @@ public class Key implements Comparable<Key> { new KeyBackgroundState(android.R.attr.state_checkable, android.R.attr.state_checked), // 5: BACKGROUND_TYPE_ACTION new KeyBackgroundState(android.R.attr.state_active), - // 6: BACKGROUND_TYPE_CUSTOM_ACTION - new KeyBackgroundState(android.R.attr.state_active, android.R.attr.state_checked) }; } |