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
23b35a96
Commit
23b35a96
authored
10 years ago
by
Tadashi G. Takaoka
Browse files
Options
Downloads
Patches
Plain Diff
Fix when to show more suggestions dot hint
Bug: 17742406 Change-Id: Ifdf5d196778da2bb9bb9e3ca9250d23857d90bab
parent
9586d69b
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/suggestions/SuggestionStripLayoutHelper.java
+7
-3
7 additions, 3 deletions
...method/latin/suggestions/SuggestionStripLayoutHelper.java
with
7 additions
and
3 deletions
java/src/com/android/inputmethod/latin/suggestions/SuggestionStripLayoutHelper.java
+
7
−
3
View file @
23b35a96
...
...
@@ -365,17 +365,21 @@ final class SuggestionStripLayoutHelper {
(
PunctuationSuggestions
)
suggestedWords
,
stripView
);
}
final
boolean
shouldShowUiToAcceptTypedWord
=
Settings
.
getInstance
().
getCurrent
()
.
mShouldShowUiToAcceptTypedWord
;
final
int
suggestionsCount
=
suggestedWords
.
size
()
-
(
shouldShowUiToAcceptTypedWord
?
/* typed word */
1
:
0
);
final
int
startIndexOfMoreSuggestions
=
setupWordViewsAndReturnStartIndexOfMoreSuggestions
(
suggestedWords
,
mSuggestionsCountInStrip
);
final
TextView
centerWordView
=
mWordViews
.
get
(
mCenterPositionInStrip
);
final
int
stripWidth
=
stripView
.
getWidth
();
final
int
centerWidth
=
getSuggestionWidth
(
mCenterPositionInStrip
,
stripWidth
);
if
(
suggest
edWords
.
size
()
==
1
||
getTextScaleX
(
centerWordView
.
getText
(),
centerWidth
,
if
(
suggest
ionsCount
==
1
||
getTextScaleX
(
centerWordView
.
getText
(),
centerWidth
,
centerWordView
.
getPaint
())
<
MIN_TEXT_XSCALE
)
{
// Layout only the most relevant suggested word at the center of the suggestion strip
// by consolidating all slots in the strip.
final
int
countInStrip
=
1
;
mMoreSuggestionsAvailable
=
(
suggest
edWords
.
size
()
>
countInStrip
);
mMoreSuggestionsAvailable
=
(
suggest
ionsCount
>
countInStrip
);
layoutWord
(
mCenterPositionInStrip
,
stripWidth
-
mPadding
);
stripView
.
addView
(
centerWordView
);
setLayoutWeight
(
centerWordView
,
1.0f
,
ViewGroup
.
LayoutParams
.
MATCH_PARENT
);
...
...
@@ -387,7 +391,7 @@ final class SuggestionStripLayoutHelper {
}
final
int
countInStrip
=
mSuggestionsCountInStrip
;
mMoreSuggestionsAvailable
=
(
suggest
edWords
.
size
()
>
countInStrip
);
mMoreSuggestionsAvailable
=
(
suggest
ionsCount
>
countInStrip
);
int
x
=
0
;
for
(
int
positionInStrip
=
0
;
positionInStrip
<
countInStrip
;
positionInStrip
++)
{
if
(
positionInStrip
!=
0
)
{
...
...
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