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
7575ac70
Commit
7575ac70
authored
12 years ago
by
Tadashi G. Takaoka
Browse files
Options
Downloads
Patches
Plain Diff
Update gesture suggestions even when suggestions strip is off
Bug: 6852483 Change-Id: I873ae0f2e3bc863e989629f8bc0cc90ee33a4920
parent
259905ba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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
+16
-12
16 additions, 12 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
with
16 additions
and
12 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
+
16
−
12
View file @
7575ac70
...
@@ -1332,13 +1332,15 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1332,13 +1332,15 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
@Override
@Override
public
void
onUpdateBatchInput
(
InputPointers
batchPointers
)
{
public
void
onUpdateBatchInput
(
InputPointers
batchPointers
)
{
mWordComposer
.
setBatchInputPointers
(
batchPointers
);
mWordComposer
.
setBatchInputPointers
(
batchPointers
);
updateSuggestionStrip
();
final
SuggestedWords
suggestedWords
=
getSuggestedWords
();
showSuggestionStrip
(
suggestedWords
,
null
);
}
}
@Override
@Override
public
void
onEndBatchInput
(
InputPointers
batchPointers
)
{
public
void
onEndBatchInput
(
InputPointers
batchPointers
)
{
mWordComposer
.
setBatchInputPointers
(
batchPointers
);
mWordComposer
.
setBatchInputPointers
(
batchPointers
);
final
SuggestedWords
suggestedWords
=
updateSuggestionStrip
();
final
SuggestedWords
suggestedWords
=
getSuggestedWords
();
showSuggestionStrip
(
suggestedWords
,
null
);
if
(
suggestedWords
==
null
||
suggestedWords
.
size
()
==
0
)
{
if
(
suggestedWords
==
null
||
suggestedWords
.
size
()
==
0
)
{
return
;
return
;
}
}
...
@@ -1691,8 +1693,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1691,8 +1693,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
}
}
}
}
// TODO: rename this method to updateSuggestionStrip or simply updateSuggestions
private
void
updateSuggestionStrip
()
{
private
SuggestedWords
updateSuggestionStrip
()
{
mHandler
.
cancelUpdateSuggestionStrip
();
mHandler
.
cancelUpdateSuggestionStrip
();
// Check if we have a suggestion engine attached.
// Check if we have a suggestion engine attached.
...
@@ -1702,15 +1703,21 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1702,15 +1703,21 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
+
"requested!"
);
+
"requested!"
);
mWordComposer
.
setAutoCorrection
(
mWordComposer
.
getTypedWord
());
mWordComposer
.
setAutoCorrection
(
mWordComposer
.
getTypedWord
());
}
}
return
null
;
return
;
}
}
final
String
typedWord
=
mWordComposer
.
getTypedWord
();
if
(!
mWordComposer
.
isComposingWord
()
&&
!
mCurrentSettings
.
mBigramPredictionEnabled
)
{
if
(!
mWordComposer
.
isComposingWord
()
&&
!
mCurrentSettings
.
mBigramPredictionEnabled
)
{
setPunctuationSuggestions
();
setPunctuationSuggestions
();
return
null
;
return
;
}
}
final
SuggestedWords
suggestedWords
=
getSuggestedWords
();
final
String
typedWord
=
mWordComposer
.
getTypedWord
();
showSuggestionStrip
(
suggestedWords
,
typedWord
);
}
private
SuggestedWords
getSuggestedWords
()
{
final
String
typedWord
=
mWordComposer
.
getTypedWord
();
// Get the word on which we should search the bigrams. If we are composing a word, it's
// Get the word on which we should search the bigrams. If we are composing a word, it's
// whatever is *before* the half-committed word in the buffer, hence 2; if we aren't, we
// whatever is *before* the half-committed word in the buffer, hence 2; if we aren't, we
// should just skip whitespace if any, so 1.
// should just skip whitespace if any, so 1.
...
@@ -1718,13 +1725,10 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1718,13 +1725,10 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
final
CharSequence
prevWord
=
final
CharSequence
prevWord
=
mConnection
.
getNthPreviousWord
(
mCurrentSettings
.
mWordSeparators
,
mConnection
.
getNthPreviousWord
(
mCurrentSettings
.
mWordSeparators
,
mWordComposer
.
isComposingWord
()
?
2
:
1
);
mWordComposer
.
isComposingWord
()
?
2
:
1
);
SuggestedWords
suggestedWords
=
mSuggest
.
getSuggestedWords
(
mWordComposer
,
final
SuggestedWords
suggestedWords
=
mSuggest
.
getSuggestedWords
(
mWordComposer
,
prevWord
,
mKeyboardSwitcher
.
getKeyboard
().
getProximityInfo
(),
prevWord
,
mKeyboardSwitcher
.
getKeyboard
().
getProximityInfo
(),
mCurrentSettings
.
mCorrectionEnabled
);
mCurrentSettings
.
mCorrectionEnabled
);
suggestedWords
=
maybeRetrieveOlderSuggestions
(
typedWord
,
suggestedWords
);
return
maybeRetrieveOlderSuggestions
(
typedWord
,
suggestedWords
);
showSuggestionStrip
(
suggestedWords
,
typedWord
);
return
suggestedWords
;
}
}
private
SuggestedWords
maybeRetrieveOlderSuggestions
(
final
CharSequence
typedWord
,
private
SuggestedWords
maybeRetrieveOlderSuggestions
(
final
CharSequence
typedWord
,
...
...
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