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
c5f13680
Commit
c5f13680
authored
14 years ago
by
Tadashi G. Takaoka
Browse files
Options
Downloads
Patches
Plain Diff
Check user dictionary before inserting new word
Bug: 3264920 Change-Id: I9fe45a61b2ad2b1ed69d3a0cbc6eebecb4038acc
parent
9ecad8c2
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/UserDictionary.java
+18
-2
18 additions, 2 deletions
java/src/com/android/inputmethod/latin/UserDictionary.java
with
18 additions
and
2 deletions
java/src/com/android/inputmethod/latin/UserDictionary.java
+
18
−
2
View file @
c5f13680
...
...
@@ -21,6 +21,7 @@ import android.content.ContentValues;
import
android.content.Context
;
import
android.database.ContentObserver
;
import
android.database.Cursor
;
import
android.net.Uri
;
import
android.provider.UserDictionary.Words
;
public
class
UserDictionary
extends
ExpandableDictionary
{
...
...
@@ -80,7 +81,7 @@ public class UserDictionary extends ExpandableDictionary {
* @TODO use a higher or float range for frequency
*/
@Override
public
synchronized
void
addWord
(
String
word
,
int
frequency
)
{
public
synchronized
void
addWord
(
final
String
word
,
final
int
frequency
)
{
// Force load the dictionary here synchronously
if
(
getRequiresReload
())
loadDictionaryAsync
();
// Safeguard against adding long words. Can cause stack overflow.
...
...
@@ -99,7 +100,22 @@ public class UserDictionary extends ExpandableDictionary {
new
Thread
(
"addWord"
)
{
@Override
public
void
run
()
{
contentResolver
.
insert
(
Words
.
CONTENT_URI
,
values
);
Cursor
cursor
=
contentResolver
.
query
(
Words
.
CONTENT_URI
,
PROJECTION
,
"word=? and ((locale IS NULL) or (locale=?))"
,
new
String
[]
{
word
,
mLocale
},
null
);
if
(
cursor
!=
null
&&
cursor
.
moveToFirst
())
{
String
locale
=
cursor
.
getString
(
cursor
.
getColumnIndex
(
Words
.
LOCALE
));
// If locale is null, we will not override the entry.
if
(
locale
!=
null
&&
locale
.
equals
(
mLocale
.
toString
()))
{
long
id
=
cursor
.
getLong
(
cursor
.
getColumnIndex
(
Words
.
_ID
));
Uri
uri
=
Uri
.
withAppendedPath
(
Words
.
CONTENT_URI
,
Long
.
toString
(
id
));
// Update the entry with new frequency value.
contentResolver
.
update
(
uri
,
values
,
null
,
null
);
}
}
else
{
// Insert new entry.
contentResolver
.
insert
(
Words
.
CONTENT_URI
,
values
);
}
}
}.
start
();
...
...
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