Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
4bc74d19
Commit
4bc74d19
authored
11 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
11 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Delete surrogate together."
parents
1162c053
b2d954ca
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/latin/LatinIME.java
+9
-15
9 additions, 15 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
with
9 additions
and
15 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
+
9
−
15
View file @
4bc74d19
...
@@ -1920,6 +1920,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1920,6 +1920,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// This should never happen.
// This should never happen.
Log
.
e
(
TAG
,
"Backspace when we don't know the selection position"
);
Log
.
e
(
TAG
,
"Backspace when we don't know the selection position"
);
}
}
final
int
lengthToDelete
=
Character
.
isSupplementaryCodePoint
(
mConnection
.
getCodePointBeforeCursor
())
?
2
:
1
;
if
(
mAppWorkAroundsUtils
.
isBeforeJellyBean
())
{
if
(
mAppWorkAroundsUtils
.
isBeforeJellyBean
())
{
// Backward compatibility mode. Before Jelly bean, the keyboard would simulate
// Backward compatibility mode. Before Jelly bean, the keyboard would simulate
// a hardware keyboard event on pressing enter or delete. This is bad for many
// a hardware keyboard event on pressing enter or delete. This is bad for many
...
@@ -1927,15 +1929,18 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1927,15 +1929,18 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// relying on this behavior so we continue to support it for older apps.
// relying on this behavior so we continue to support it for older apps.
sendDownUpKeyEventForBackwardCompatibility
(
KeyEvent
.
KEYCODE_DEL
);
sendDownUpKeyEventForBackwardCompatibility
(
KeyEvent
.
KEYCODE_DEL
);
}
else
{
}
else
{
mConnection
.
deleteSurroundingText
(
1
,
0
);
mConnection
.
deleteSurroundingText
(
lengthToDelete
,
0
);
}
}
if
(
ProductionFlag
.
USES_DEVELOPMENT_ONLY_DIAGNOSTICS
)
{
if
(
ProductionFlag
.
USES_DEVELOPMENT_ONLY_DIAGNOSTICS
)
{
ResearchLogger
.
latinIME_handleBackspace
(
1
,
true
/* shouldUncommitLogUnit */
);
ResearchLogger
.
latinIME_handleBackspace
(
lengthToDelete
,
true
/* shouldUncommitLogUnit */
);
}
}
if
(
mDeleteCount
>
DELETE_ACCELERATE_AT
)
{
if
(
mDeleteCount
>
DELETE_ACCELERATE_AT
)
{
mConnection
.
deleteSurroundingText
(
1
,
0
);
final
int
lengthToDeleteAgain
=
Character
.
isSupplementaryCodePoint
(
mConnection
.
getCodePointBeforeCursor
())
?
2
:
1
;
mConnection
.
deleteSurroundingText
(
lengthToDeleteAgain
,
0
);
if
(
ProductionFlag
.
USES_DEVELOPMENT_ONLY_DIAGNOSTICS
)
{
if
(
ProductionFlag
.
USES_DEVELOPMENT_ONLY_DIAGNOSTICS
)
{
ResearchLogger
.
latinIME_handleBackspace
(
1
,
ResearchLogger
.
latinIME_handleBackspace
(
lengthToDeleteAgain
,
true
/* shouldUncommitLogUnit */
);
true
/* shouldUncommitLogUnit */
);
}
}
}
}
...
@@ -2730,17 +2735,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -2730,17 +2735,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
break
;
break
;
}
}
}
}
if
(
Constants
.
CODE_DELETE
==
primaryCode
)
{
// This is a stopgap solution to avoid leaving a high surrogate alone in a text view.
// In the future, we need to deprecate deteleSurroundingText() and have a surrogate
// pair-friendly way of deleting characters in InputConnection.
// TODO: use getCodePointBeforeCursor instead to improve performance
final
CharSequence
lastChar
=
mConnection
.
getTextBeforeCursor
(
1
,
0
);
if
(!
TextUtils
.
isEmpty
(
lastChar
)
&&
Character
.
isHighSurrogate
(
lastChar
.
charAt
(
0
)))
{
mConnection
.
deleteSurroundingText
(
1
,
0
);
}
}
}
}
// Hooks for hardware keyboard
// Hooks for hardware keyboard
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment