am faa94a2d: Merge "Add owner\'s info to the dictionary"
* commit 'faa94a2d0abfc8e0f03799dd5f0f2125e44b0bfd': Add owner's info to the dictionarymain
commit
eecf34a9be
|
@ -20,8 +20,10 @@ import android.content.ContentResolver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.database.ContentObserver;
|
import android.database.ContentObserver;
|
||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
|
import android.net.Uri;
|
||||||
import android.os.SystemClock;
|
import android.os.SystemClock;
|
||||||
import android.provider.BaseColumns;
|
import android.provider.BaseColumns;
|
||||||
|
import android.provider.ContactsContract;
|
||||||
import android.provider.ContactsContract.Contacts;
|
import android.provider.ContactsContract.Contacts;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
@ -30,7 +32,7 @@ import java.util.Locale;
|
||||||
|
|
||||||
public class ContactsBinaryDictionary extends ExpandableBinaryDictionary {
|
public class ContactsBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
|
|
||||||
private static final String[] PROJECTION = {BaseColumns._ID, Contacts.DISPLAY_NAME,};
|
private static final String[] PROJECTION = {BaseColumns._ID, Contacts.DISPLAY_NAME};
|
||||||
private static final String[] PROJECTION_ID_ONLY = {BaseColumns._ID};
|
private static final String[] PROJECTION_ID_ONLY = {BaseColumns._ID};
|
||||||
|
|
||||||
private static final String TAG = ContactsBinaryDictionary.class.getSimpleName();
|
private static final String TAG = ContactsBinaryDictionary.class.getSimpleName();
|
||||||
|
@ -102,9 +104,16 @@ public class ContactsBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void loadDictionaryAsync() {
|
public void loadDictionaryAsync() {
|
||||||
|
clearFusionDictionary();
|
||||||
|
loadDictionaryAsyncForUri(ContactsContract.Profile.CONTENT_URI);
|
||||||
|
// TODO: Switch this URL to the newer ContactsContract too
|
||||||
|
loadDictionaryAsyncForUri(Contacts.CONTENT_URI);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadDictionaryAsyncForUri(final Uri uri) {
|
||||||
try {
|
try {
|
||||||
Cursor cursor = mContext.getContentResolver()
|
Cursor cursor = mContext.getContentResolver()
|
||||||
.query(Contacts.CONTENT_URI, PROJECTION, null, null, null);
|
.query(uri, PROJECTION, null, null, null);
|
||||||
if (cursor != null) {
|
if (cursor != null) {
|
||||||
try {
|
try {
|
||||||
if (cursor.moveToFirst()) {
|
if (cursor.moveToFirst()) {
|
||||||
|
@ -129,7 +138,6 @@ public class ContactsBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addWords(final Cursor cursor) {
|
private void addWords(final Cursor cursor) {
|
||||||
clearFusionDictionary();
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
while (!cursor.isAfterLast() && count < MAX_CONTACT_COUNT) {
|
while (!cursor.isAfterLast() && count < MAX_CONTACT_COUNT) {
|
||||||
String name = cursor.getString(INDEX_NAME);
|
String name = cursor.getString(INDEX_NAME);
|
||||||
|
@ -173,6 +181,9 @@ public class ContactsBinaryDictionary extends ExpandableBinaryDictionary {
|
||||||
// capitalization of i.
|
// capitalization of i.
|
||||||
final int wordLen = StringUtils.codePointCount(word);
|
final int wordLen = StringUtils.codePointCount(word);
|
||||||
if (wordLen < MAX_WORD_LENGTH && wordLen > 1) {
|
if (wordLen < MAX_WORD_LENGTH && wordLen > 1) {
|
||||||
|
if (DEBUG) {
|
||||||
|
Log.d(TAG, "addName " + name + ", " + word + ", " + prevWord);
|
||||||
|
}
|
||||||
super.addWord(word, null /* shortcut */, FREQUENCY_FOR_CONTACTS,
|
super.addWord(word, null /* shortcut */, FREQUENCY_FOR_CONTACTS,
|
||||||
false /* isNotAWord */);
|
false /* isNotAWord */);
|
||||||
if (!TextUtils.isEmpty(prevWord)) {
|
if (!TextUtils.isEmpty(prevWord)) {
|
||||||
|
|
Loading…
Reference in New Issue