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
1c3c0ff1
Commit
1c3c0ff1
authored
12 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
12 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Cleanup, part 2 (C2)"
parents
65b7bcb0
71dc2804
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/SettingsValues.java
+3
-7
3 additions, 7 deletions
java/src/com/android/inputmethod/latin/SettingsValues.java
with
3 additions
and
7 deletions
java/src/com/android/inputmethod/latin/SettingsValues.java
+
3
−
7
View file @
1c3c0ff1
...
@@ -76,9 +76,7 @@ public class SettingsValues {
...
@@ -76,9 +76,7 @@ public class SettingsValues {
@SuppressWarnings
(
"unused"
)
// TODO: Use this
@SuppressWarnings
(
"unused"
)
// TODO: Use this
private
final
String
mKeyPreviewPopupDismissDelayRawValue
;
private
final
String
mKeyPreviewPopupDismissDelayRawValue
;
public
final
boolean
mUseContactsDict
;
public
final
boolean
mUseContactsDict
;
// Suggestion: use bigrams to adjust scores of suggestions obtained from unigram dictionary
// Use bigrams to predict the next word when there is no input for it yet
public
final
boolean
mBigramSuggestionEnabled
;
// Prediction: use bigrams to predict the next word when there is no input for it yet
public
final
boolean
mBigramPredictionEnabled
;
public
final
boolean
mBigramPredictionEnabled
;
public
final
boolean
mEnableSuggestionSpanInsertion
;
public
final
boolean
mEnableSuggestionSpanInsertion
;
@SuppressWarnings
(
"unused"
)
// TODO: Use this
@SuppressWarnings
(
"unused"
)
// TODO: Use this
...
@@ -157,9 +155,7 @@ public class SettingsValues {
...
@@ -157,9 +155,7 @@ public class SettingsValues {
Integer
.
toString
(
res
.
getInteger
(
R
.
integer
.
config_key_preview_linger_timeout
)));
Integer
.
toString
(
res
.
getInteger
(
R
.
integer
.
config_key_preview_linger_timeout
)));
mUseContactsDict
=
prefs
.
getBoolean
(
Settings
.
PREF_KEY_USE_CONTACTS_DICT
,
true
);
mUseContactsDict
=
prefs
.
getBoolean
(
Settings
.
PREF_KEY_USE_CONTACTS_DICT
,
true
);
mAutoCorrectEnabled
=
isAutoCorrectEnabled
(
res
,
mAutoCorrectionThresholdRawValue
);
mAutoCorrectEnabled
=
isAutoCorrectEnabled
(
res
,
mAutoCorrectionThresholdRawValue
);
mBigramSuggestionEnabled
=
mAutoCorrectEnabled
;
mBigramPredictionEnabled
=
isBigramPredictionEnabled
(
prefs
,
res
);
mBigramPredictionEnabled
=
mBigramSuggestionEnabled
&&
isBigramPredictionEnabled
(
prefs
,
res
);
// TODO: remove mEnableSuggestionSpanInsertion. It's always true.
// TODO: remove mEnableSuggestionSpanInsertion. It's always true.
mEnableSuggestionSpanInsertion
=
true
;
mEnableSuggestionSpanInsertion
=
true
;
mVibrationDurationSettingsRawValue
=
mVibrationDurationSettingsRawValue
=
...
@@ -214,7 +210,7 @@ public class SettingsValues {
...
@@ -214,7 +210,7 @@ public class SettingsValues {
private
int
createCorrectionMode
()
{
private
int
createCorrectionMode
()
{
final
boolean
shouldAutoCorrect
=
mAutoCorrectEnabled
final
boolean
shouldAutoCorrect
=
mAutoCorrectEnabled
&&
!
mInputAttributes
.
mInputTypeNoAutoCorrect
;
&&
!
mInputAttributes
.
mInputTypeNoAutoCorrect
;
if
(
mBigramSuggestionEnabled
&&
shouldAutoCorrect
)
return
Suggest
.
CORRECTION_FULL_BIGRAM
;
if
(
shouldAutoCorrect
)
return
Suggest
.
CORRECTION_FULL_BIGRAM
;
return
shouldAutoCorrect
?
Suggest
.
CORRECTION_FULL
:
Suggest
.
CORRECTION_NONE
;
return
shouldAutoCorrect
?
Suggest
.
CORRECTION_FULL
:
Suggest
.
CORRECTION_NONE
;
}
}
...
...
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