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
d3e50a2a
Commit
d3e50a2a
authored
13 years ago
by
Tadashi G. Takaoka
Browse files
Options
Downloads
Patches
Plain Diff
Squash SuggestionsStripParams into SuggestionsViewParams
Bug: 5246982 Change-Id: Idc2563cb0175aabc4282f9fd45eefaa129ed4961
parent
5bb7a64f
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/SuggestionsView.java
+34
-42
34 additions, 42 deletions
java/src/com/android/inputmethod/latin/SuggestionsView.java
with
34 additions
and
42 deletions
java/src/com/android/inputmethod/latin/SuggestionsView.java
+
34
−
42
View file @
d3e50a2a
...
...
@@ -89,7 +89,7 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
private
SuggestedWords
mSuggestions
=
SuggestedWords
.
EMPTY
;
private
boolean
mShowingAutoCorrectionInverted
;
private
final
Suggestions
Strip
Params
m
Strip
Params
;
private
final
Suggestions
View
Params
mParams
;
private
static
final
float
MIN_TEXT_XSCALE
=
0.70f
;
private
final
UiHandler
mHandler
=
new
UiHandler
(
this
);
...
...
@@ -144,41 +144,22 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
}
private
static
class
SuggestionsViewParams
{
private
static
final
int
DEFAULT_SUGGESTIONS_COUNT_IN_STRIP
=
3
;
private
static
final
int
DEFAULT_CENTER_SUGGESTION_PERCENTILE
=
40
;
private
static
final
int
PUNCTUATIONS_IN_STRIP
=
6
;
public
final
int
mPadding
;
public
final
int
mDividerWidth
;
public
final
int
mSuggestionsStripHeight
;
public
final
int
mSuggestionsCountInStrip
;
protected
final
List
<
TextView
>
mWords
;
protected
final
List
<
View
>
mDividers
;
protected
final
List
<
TextView
>
mInfos
;
protected
SuggestionsViewParams
(
List
<
TextView
>
words
,
List
<
View
>
dividers
,
List
<
TextView
>
infos
)
{
mWords
=
words
;
mDividers
=
dividers
;
mInfos
=
infos
;
final
TextView
word
=
words
.
get
(
0
);
final
View
divider
=
dividers
.
get
(
0
);
mPadding
=
word
.
getCompoundPaddingLeft
()
+
word
.
getCompoundPaddingRight
();
divider
.
measure
(
ViewGroup
.
LayoutParams
.
MATCH_PARENT
,
ViewGroup
.
LayoutParams
.
MATCH_PARENT
);
mDividerWidth
=
divider
.
getMeasuredWidth
();
final
Resources
res
=
word
.
getResources
();
mSuggestionsStripHeight
=
res
.
getDimensionPixelSize
(
R
.
dimen
.
suggestions_strip_height
);
}
}
private
static
class
SuggestionsStripParams
extends
SuggestionsViewParams
{
private
static
final
int
DEFAULT_SUGGESTIONS_COUNT_IN_STRIP
=
3
;
private
static
final
int
DEFAULT_CENTER_SUGGESTION_PERCENTILE
=
40
;
private
static
final
int
PUNCTUATIONS_IN_STRIP
=
6
;
private
final
List
<
TextView
>
mWords
;
private
final
List
<
View
>
mDividers
;
private
final
List
<
TextView
>
mInfos
;
private
final
int
mColorTypedWord
;
private
final
int
mColorAutoCorrect
;
private
final
int
mColorSuggested
;
public
final
int
mSuggestionsCountInStrip
;
private
final
float
mCenterSuggestionWeight
;
private
final
int
mCenterSuggestionIndex
;
private
final
Drawable
mMoreSuggestionsHint
;
...
...
@@ -202,9 +183,22 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
private
final
TextView
mHintToSaveView
;
private
final
CharSequence
mHintToSaveText
;
public
Suggestions
Strip
Params
(
Context
context
,
AttributeSet
attrs
,
int
defStyle
,
public
Suggestions
View
Params
(
Context
context
,
AttributeSet
attrs
,
int
defStyle
,
List
<
TextView
>
words
,
List
<
View
>
dividers
,
List
<
TextView
>
infos
)
{
super
(
words
,
dividers
,
infos
);
mWords
=
words
;
mDividers
=
dividers
;
mInfos
=
infos
;
final
TextView
word
=
words
.
get
(
0
);
final
View
divider
=
dividers
.
get
(
0
);
mPadding
=
word
.
getCompoundPaddingLeft
()
+
word
.
getCompoundPaddingRight
();
divider
.
measure
(
ViewGroup
.
LayoutParams
.
MATCH_PARENT
,
ViewGroup
.
LayoutParams
.
MATCH_PARENT
);
mDividerWidth
=
divider
.
getMeasuredWidth
();
final
Resources
res
=
word
.
getResources
();
mSuggestionsStripHeight
=
res
.
getDimensionPixelSize
(
R
.
dimen
.
suggestions_strip_height
);
final
TypedArray
a
=
context
.
obtainStyledAttributes
(
attrs
,
R
.
styleable
.
SuggestionsView
,
defStyle
,
R
.
style
.
SuggestionsViewStyle
);
mSuggestionStripOption
=
a
.
getInt
(
R
.
styleable
.
SuggestionsView_suggestionStripOption
,
0
);
...
...
@@ -220,7 +214,6 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
a
.
recycle
();
mCenterSuggestionIndex
=
mSuggestionsCountInStrip
/
2
;
final
Resources
res
=
context
.
getResources
();
mMoreSuggestionsHint
=
res
.
getDrawable
(
R
.
drawable
.
more_suggestions_hint
);
mInvertedForegroundColorSpan
=
new
ForegroundColorSpan
(
mColorTypedWord
^
0x00ffffff
);
...
...
@@ -496,9 +489,8 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
mInfos
.
add
((
TextView
)
inflater
.
inflate
(
R
.
layout
.
suggestion_info
,
null
));
}
mStripParams
=
new
SuggestionsStripParams
(
context
,
attrs
,
defStyle
,
mWords
,
mDividers
,
mInfos
);
mStripParams
.
mWordToSaveView
.
setOnClickListener
(
this
);
mParams
=
new
SuggestionsViewParams
(
context
,
attrs
,
defStyle
,
mWords
,
mDividers
,
mInfos
);
mParams
.
mWordToSaveView
.
setOnClickListener
(
this
);
mMoreSuggestionsContainer
=
inflater
.
inflate
(
R
.
layout
.
more_suggestions
,
null
);
mMoreSuggestionsView
=
(
MoreSuggestionsView
)
mMoreSuggestionsContainer
...
...
@@ -535,7 +527,7 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
if
(
mSuggestions
.
size
()
==
0
)
return
;
m
Strip
Params
.
layout
(
mSuggestions
,
mSuggestionsStrip
,
mSuggestionsPlacer
,
getWidth
());
mParams
.
layout
(
mSuggestions
,
mSuggestionsStrip
,
mSuggestionsPlacer
,
getWidth
());
}
private
static
CharSequence
getDebugInfo
(
SuggestedWords
suggestions
,
int
pos
)
{
...
...
@@ -624,7 +616,7 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
}
public
void
onAutoCorrectionInverted
(
CharSequence
autoCorrectedWord
)
{
final
CharSequence
inverted
=
m
Strip
Params
.
getInvertedText
(
autoCorrectedWord
);
final
CharSequence
inverted
=
mParams
.
getInvertedText
(
autoCorrectedWord
);
if
(
inverted
==
null
)
return
;
final
TextView
tv
=
mWords
.
get
(
1
);
...
...
@@ -634,12 +626,12 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
public
boolean
isShowingAddToDictionaryHint
()
{
return
mSuggestionsStrip
.
getChildCount
()
>
0
&&
mSuggestionsStrip
.
getChildAt
(
0
)
==
m
Strip
Params
.
mWordToSaveView
;
&&
mSuggestionsStrip
.
getChildAt
(
0
)
==
mParams
.
mWordToSaveView
;
}
public
void
showAddToDictionaryHint
(
CharSequence
word
)
{
clear
();
m
Strip
Params
.
layoutAddToDictionaryHint
(
word
,
mSuggestionsStrip
,
getWidth
());
mParams
.
layoutAddToDictionaryHint
(
word
,
mSuggestionsStrip
,
getWidth
());
}
public
boolean
dismissAddToDictionaryHint
()
{
...
...
@@ -671,7 +663,7 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
return
;
final
TextView
previewText
=
mPreviewText
;
previewText
.
setTextColor
(
m
Strip
Params
.
mColorTypedWord
);
previewText
.
setTextColor
(
mParams
.
mColorTypedWord
);
previewText
.
setText
(
word
);
previewText
.
measure
(
ViewGroup
.
LayoutParams
.
WRAP_CONTENT
,
ViewGroup
.
LayoutParams
.
WRAP_CONTENT
);
...
...
@@ -692,7 +684,7 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
private
void
addToDictionary
(
CharSequence
word
)
{
if
(
mListener
.
addWordToDictionary
(
word
.
toString
()))
{
final
CharSequence
message
=
getContext
().
getString
(
R
.
string
.
added_word
,
word
);
showPreview
(
m
Strip
Params
.
mWordToSaveView
,
message
);
showPreview
(
mParams
.
mWordToSaveView
,
message
);
}
}
...
...
@@ -732,7 +724,7 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
@Override
public
boolean
onLongClick
(
View
view
)
{
final
Suggestions
Strip
Params
params
=
m
Strip
Params
;
final
Suggestions
View
Params
params
=
mParams
;
if
(
params
.
mMoreSuggestionsAvailable
)
{
final
int
stripWidth
=
getWidth
();
final
View
container
=
mMoreSuggestionsContainer
;
...
...
@@ -799,7 +791,7 @@ public class SuggestionsView extends LinearLayout implements OnClickListener, On
@Override
public
void
onClick
(
View
view
)
{
if
(
view
==
m
Strip
Params
.
mWordToSaveView
)
{
if
(
view
==
mParams
.
mWordToSaveView
)
{
addToDictionary
((
CharSequence
)
view
.
getTag
());
clear
();
return
;
...
...
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