Skip to content
Snippets Groups Projects
Commit 336bc6bf authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Keep addWordToDictionary from doing disk I/O on main thread

bug: 2999524

Change-Id: Id8b04d38079cfa1dadd5955eb7f83085e60eb8e2
parent 1bebdcb4
No related branches found
No related tags found
No related merge requests found
......@@ -89,13 +89,19 @@ public class UserDictionary extends ExpandableDictionary {
super.addWord(word, frequency);
// Update the user dictionary provider
ContentValues values = new ContentValues(5);
final ContentValues values = new ContentValues(5);
values.put(Words.WORD, word);
values.put(Words.FREQUENCY, frequency);
values.put(Words.LOCALE, mLocale);
values.put(Words.APP_ID, 0);
getContext().getContentResolver().insert(Words.CONTENT_URI, values);
final ContentResolver contentResolver = getContext().getContentResolver();
new Thread("addWord") {
public void run() {
contentResolver.insert(Words.CONTENT_URI, values);
}
}.start();
// In case the above does a synchronous callback of the change observer
setRequiresReload(false);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment