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
53eedaea
Commit
53eedaea
authored
12 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
12 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Consolidate auto-correction settings."
parents
9224b437
140adf20
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/src/com/android/inputmethod/latin/LatinIME.java
+7
-11
7 additions, 11 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
java/src/com/android/inputmethod/latin/SettingsValues.java
+1
-1
1 addition, 1 deletion
java/src/com/android/inputmethod/latin/SettingsValues.java
with
8 additions
and
12 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
+
7
−
11
View file @
53eedaea
...
@@ -449,7 +449,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -449,7 +449,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
oldContactsDictionary
=
null
;
oldContactsDictionary
=
null
;
}
}
mSuggest
=
new
Suggest
(
this
,
subtypeLocale
);
mSuggest
=
new
Suggest
(
this
,
subtypeLocale
);
if
(
mCurrentSettings
.
mAuto
Correct
Enabled
)
{
if
(
mCurrentSettings
.
is
Correct
ionOn
()
)
{
mSuggest
.
setAutoCorrectionThreshold
(
mCurrentSettings
.
mAutoCorrectionThreshold
);
mSuggest
.
setAutoCorrectionThreshold
(
mCurrentSettings
.
mAutoCorrectionThreshold
);
}
}
...
@@ -680,7 +680,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -680,7 +680,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
loadSettings
();
loadSettings
();
if
(
mSuggest
!=
null
&&
mCurrentSettings
.
mAuto
Correct
Enabled
)
{
if
(
mSuggest
!=
null
&&
mCurrentSettings
.
is
Correct
ionOn
()
)
{
mSuggest
.
setAutoCorrectionThreshold
(
mCurrentSettings
.
mAutoCorrectionThreshold
);
mSuggest
.
setAutoCorrectionThreshold
(
mCurrentSettings
.
mAutoCorrectionThreshold
);
}
}
...
@@ -1553,8 +1553,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1553,8 +1553,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// not to auto correct, but accept the typed word. For instance,
// not to auto correct, but accept the typed word. For instance,
// in Italian dov' should not be expanded to dove' because the elision
// in Italian dov' should not be expanded to dove' because the elision
// requires the last vowel to be removed.
// requires the last vowel to be removed.
final
boolean
shouldAutoCorrect
=
mCurrentSettings
.
mAutoCorrectEnabled
final
boolean
shouldAutoCorrect
=
mCurrentSettings
.
isCorrectionOn
();
&&
!
mInputAttributes
.
mInputTypeNoAutoCorrect
;
if
(
shouldAutoCorrect
&&
primaryCode
!=
Keyboard
.
CODE_SINGLE_QUOTE
)
{
if
(
shouldAutoCorrect
&&
primaryCode
!=
Keyboard
.
CODE_SINGLE_QUOTE
)
{
commitCurrentAutoCorrection
(
primaryCode
);
commitCurrentAutoCorrection
(
primaryCode
);
didAutoCorrect
=
true
;
didAutoCorrect
=
true
;
...
@@ -1914,14 +1913,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -1914,14 +1913,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
mConnection
.
commitText
(
SuggestionSpanUtils
.
getTextWithSuggestionSpan
(
mConnection
.
commitText
(
SuggestionSpanUtils
.
getTextWithSuggestionSpan
(
this
,
chosenWord
,
suggestedWords
,
mIsMainDictionaryAvailable
),
this
,
chosenWord
,
suggestedWords
,
mIsMainDictionaryAvailable
),
1
);
1
);
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
ResearchLogger
.
latinIME_commitText
(
chosenWord
);
}
}
else
{
}
else
{
mConnection
.
commitText
(
chosenWord
,
1
);
mConnection
.
commitText
(
chosenWord
,
1
);
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
}
ResearchLogger
.
latinIME_commitText
(
chosenWord
);
if
(
ProductionFlag
.
IS_EXPERIMENTAL
)
{
}
ResearchLogger
.
latinIME_commitText
(
chosenWord
);
}
}
// Add the word to the user history dictionary
// Add the word to the user history dictionary
final
CharSequence
prevWord
=
addToUserHistoryDictionary
(
chosenWord
);
final
CharSequence
prevWord
=
addToUserHistoryDictionary
(
chosenWord
);
...
@@ -2231,7 +2227,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
...
@@ -2231,7 +2227,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
p
.
println
(
" mIsSuggestionsRequested="
+
mInputAttributes
.
mIsSettingsSuggestionStripOn
);
p
.
println
(
" mIsSuggestionsRequested="
+
mInputAttributes
.
mIsSettingsSuggestionStripOn
);
p
.
println
(
" mCorrectionMode="
+
mCurrentSettings
.
mCorrectionMode
);
p
.
println
(
" mCorrectionMode="
+
mCurrentSettings
.
mCorrectionMode
);
p
.
println
(
" isComposingWord="
+
mWordComposer
.
isComposingWord
());
p
.
println
(
" isComposingWord="
+
mWordComposer
.
isComposingWord
());
p
.
println
(
"
mAuto
Correct
Enabled
="
+
mCurrentSettings
.
mAuto
Correct
Enabled
);
p
.
println
(
"
is
Correct
ionOn
="
+
mCurrentSettings
.
is
Correct
ionOn
()
);
p
.
println
(
" mSoundOn="
+
mCurrentSettings
.
mSoundOn
);
p
.
println
(
" mSoundOn="
+
mCurrentSettings
.
mSoundOn
);
p
.
println
(
" mVibrateOn="
+
mCurrentSettings
.
mVibrateOn
);
p
.
println
(
" mVibrateOn="
+
mCurrentSettings
.
mVibrateOn
);
p
.
println
(
" mKeyPreviewPopupOn="
+
mCurrentSettings
.
mKeyPreviewPopupOn
);
p
.
println
(
" mKeyPreviewPopupOn="
+
mCurrentSettings
.
mKeyPreviewPopupOn
);
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/SettingsValues.java
+
1
−
1
View file @
53eedaea
...
@@ -91,7 +91,7 @@ public class SettingsValues {
...
@@ -91,7 +91,7 @@ public class SettingsValues {
public
final
int
mKeypressVibrationDuration
;
public
final
int
mKeypressVibrationDuration
;
public
final
float
mFxVolume
;
public
final
float
mFxVolume
;
public
final
int
mKeyPreviewPopupDismissDelay
;
public
final
int
mKeyPreviewPopupDismissDelay
;
p
ublic
final
boolean
mAutoCorrectEnabled
;
p
rivate
final
boolean
mAutoCorrectEnabled
;
public
final
float
mAutoCorrectionThreshold
;
public
final
float
mAutoCorrectionThreshold
;
public
final
int
mCorrectionMode
;
public
final
int
mCorrectionMode
;
public
final
int
mSuggestionVisibility
;
public
final
int
mSuggestionVisibility
;
...
...
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