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
380ad509
Commit
380ad509
authored
13 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
13 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Optimization and typo fix"
parents
b163f916
3ee7d975
No related branches found
No related tags found
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
+3
-4
3 additions, 4 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
java/src/com/android/inputmethod/latin/SubtypeSwitcher.java
+2
-2
2 additions, 2 deletions
java/src/com/android/inputmethod/latin/SubtypeSwitcher.java
with
5 additions
and
6 deletions
java/src/com/android/inputmethod/latin/LatinIME.java
+
3
−
4
View file @
380ad509
...
...
@@ -503,7 +503,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
private
void
initSuggest
()
{
final
String
localeStr
=
mSubtypeSwitcher
.
getInputLocaleStr
();
final
Locale
keyboardLocale
=
LocaleUtils
.
constructLocaleFromString
(
localeStr
);
final
Locale
keyboardLocale
=
mSubtypeSwitcher
.
getInputLocale
(
);
final
Resources
res
=
mResources
;
final
Locale
savedLocale
=
LocaleUtils
.
setSystemLocale
(
res
,
keyboardLocale
);
...
...
@@ -567,8 +567,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
}
/* package private */
void
resetSuggestMainDict
()
{
final
String
localeStr
=
mSubtypeSwitcher
.
getInputLocaleStr
();
final
Locale
keyboardLocale
=
LocaleUtils
.
constructLocaleFromString
(
localeStr
);
final
Locale
keyboardLocale
=
mSubtypeSwitcher
.
getInputLocale
();
int
mainDicResId
=
DictionaryFactory
.
getMainDictionaryResourceId
(
mResources
);
mSuggest
.
resetMainDict
(
this
,
mainDicResId
,
keyboardLocale
);
}
...
...
@@ -1995,7 +1994,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
}
private
void
addToUserHistoryDictionary
(
final
CharSequence
suggestion
)
{
if
(
suggestion
==
null
||
suggestion
.
length
()
<
1
)
return
;
if
(
TextUtils
.
isEmpty
(
suggestion
)
)
return
;
// Only auto-add to dictionary if auto-correct is ON. Otherwise we'll be
// adding words in situations where the user or application really didn't
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/SubtypeSwitcher.java
+
2
−
2
View file @
380ad509
...
...
@@ -47,13 +47,13 @@ public class SubtypeSwitcher {
private
static
final
String
TAG
=
SubtypeSwitcher
.
class
.
getSimpleName
();
public
static
final
String
KEYBOARD_MODE
=
"keyboard"
;
private
static
final
char
LOCALE_SEPARAT
E
R
=
'_'
;
private
static
final
char
LOCALE_SEPARAT
O
R
=
'_'
;
private
static
final
String
VOICE_MODE
=
"voice"
;
private
static
final
String
SUBTYPE_EXTRAVALUE_REQUIRE_NETWORK_CONNECTIVITY
=
"requireNetworkConnectivity"
;
private
final
TextUtils
.
SimpleStringSplitter
mLocaleSplitter
=
new
TextUtils
.
SimpleStringSplitter
(
LOCALE_SEPARAT
E
R
);
new
TextUtils
.
SimpleStringSplitter
(
LOCALE_SEPARAT
O
R
);
private
static
final
SubtypeSwitcher
sInstance
=
new
SubtypeSwitcher
();
private
/* final */
LatinIME
mService
;
...
...
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