Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
packages_inputmethods_LatinIME
Commits
401fb908
Commit
401fb908
authored
11 years ago
by
Jean Chalard
Browse files
Options
Download
Email Patches
Plain Diff
Make emoji separators
Bug: 11163495 Change-Id: I3247b8d1bbd3406b29a30a25aebd932c63431943
parent
6dac27ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
java/src/com/android/inputmethod/latin/LastComposedWord.java
java/src/com/android/inputmethod/latin/LastComposedWord.java
+0
-6
java/src/com/android/inputmethod/latin/LatinIME.java
java/src/com/android/inputmethod/latin/LatinIME.java
+4
-3
No files found.
java/src/com/android/inputmethod/latin/LastComposedWord.java
View file @
401fb908
...
...
@@ -16,8 +16,6 @@
package
com.android.inputmethod.latin
;
import
com.android.inputmethod.latin.utils.StringUtils
;
import
android.text.TextUtils
;
/**
...
...
@@ -85,8 +83,4 @@ public final class LastComposedWord {
private
boolean
didCommitTypedWord
()
{
return
TextUtils
.
equals
(
mTypedWord
,
mCommittedWord
);
}
public
static
int
getSeparatorLength
(
final
String
separatorString
)
{
return
StringUtils
.
codePointCount
(
separatorString
);
}
}
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/LatinIME.java
View file @
401fb908
...
...
@@ -1712,7 +1712,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
mSpaceState
=
SPACE_STATE_NONE
;
final
boolean
didAutoCorrect
;
final
SettingsValues
settingsValues
=
mSettings
.
getCurrent
();
if
(
settingsValues
.
isWordSeparator
(
primaryCode
))
{
if
(
settingsValues
.
isWordSeparator
(
primaryCode
)
||
Character
.
getType
(
primaryCode
)
==
Character
.
OTHER_SYMBOL
)
{
didAutoCorrect
=
handleSeparator
(
primaryCode
,
x
,
y
,
spaceState
);
}
else
{
didAutoCorrect
=
false
;
...
...
@@ -2979,8 +2980,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
final
String
originallyTypedWord
=
mLastComposedWord
.
mTypedWord
;
final
String
committedWord
=
mLastComposedWord
.
mCommittedWord
;
final
int
cancelLength
=
committedWord
.
length
();
final
int
separatorLength
=
LastComposedWord
.
getSeparatorLength
(
mLastComposedWord
.
mSeparatorString
);
// We want java chars, not codepoints for the following.
final
int
separatorLength
=
mLastComposedWord
.
mSeparatorString
.
length
(
);
// TODO: should we check our saved separator against the actual contents of the text view?
final
int
deleteLength
=
cancelLength
+
separatorLength
;
if
(
DEBUG
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment