2014-02-09 21:34:00 -05:00
|
|
|
package de.gultsch.chat.utils;
|
|
|
|
|
|
|
|
import java.util.Hashtable;
|
|
|
|
|
2014-02-10 09:24:34 -05:00
|
|
|
import android.app.Activity;
|
2014-02-09 21:34:00 -05:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.CursorLoader;
|
|
|
|
import android.content.Loader;
|
|
|
|
import android.content.Loader.OnLoadCompleteListener;
|
|
|
|
import android.database.Cursor;
|
2014-02-10 09:24:34 -05:00
|
|
|
import android.net.Uri;
|
2014-02-09 21:34:00 -05:00
|
|
|
import android.os.Bundle;
|
2014-02-18 19:35:23 -05:00
|
|
|
import android.os.Looper;
|
2014-02-09 21:34:00 -05:00
|
|
|
import android.provider.ContactsContract;
|
2014-02-10 09:24:34 -05:00
|
|
|
import android.provider.ContactsContract.Profile;
|
2014-02-09 21:34:00 -05:00
|
|
|
|
|
|
|
public class PhoneHelper {
|
|
|
|
|
|
|
|
public static void loadPhoneContacts(Context context, final OnPhoneContactsLoadedListener listener) {
|
2014-02-18 19:35:23 -05:00
|
|
|
if (Looper.myLooper()==null) {
|
|
|
|
Looper.prepare();
|
|
|
|
}
|
|
|
|
final Looper mLooper = Looper.myLooper();
|
2014-02-09 21:34:00 -05:00
|
|
|
final Hashtable<String, Bundle> phoneContacts = new Hashtable<String, Bundle>();
|
2014-02-18 19:35:23 -05:00
|
|
|
|
2014-02-09 21:34:00 -05:00
|
|
|
final String[] PROJECTION = new String[] {
|
|
|
|
ContactsContract.Data._ID,
|
|
|
|
ContactsContract.Data.DISPLAY_NAME,
|
|
|
|
ContactsContract.Data.PHOTO_THUMBNAIL_URI,
|
|
|
|
ContactsContract.Data.LOOKUP_KEY,
|
|
|
|
ContactsContract.CommonDataKinds.Im.DATA };
|
|
|
|
|
|
|
|
final String SELECTION = "(" + ContactsContract.Data.MIMETYPE + "=\""
|
|
|
|
+ ContactsContract.CommonDataKinds.Im.CONTENT_ITEM_TYPE
|
|
|
|
+ "\") AND (" + ContactsContract.CommonDataKinds.Im.PROTOCOL
|
|
|
|
+ "=\"" + ContactsContract.CommonDataKinds.Im.PROTOCOL_JABBER
|
|
|
|
+ "\")";
|
2014-02-18 19:35:23 -05:00
|
|
|
|
2014-02-09 21:34:00 -05:00
|
|
|
CursorLoader mCursorLoader = new CursorLoader(context,
|
|
|
|
ContactsContract.Data.CONTENT_URI, PROJECTION, SELECTION, null,
|
|
|
|
null);
|
|
|
|
mCursorLoader.registerListener(0, new OnLoadCompleteListener<Cursor>() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoadComplete(Loader<Cursor> arg0, Cursor cursor) {
|
|
|
|
while (cursor.moveToNext()) {
|
|
|
|
Bundle contact = new Bundle();
|
|
|
|
contact.putInt("phoneid", cursor.getInt(cursor
|
|
|
|
.getColumnIndex(ContactsContract.Data._ID)));
|
|
|
|
contact.putString(
|
|
|
|
"displayname",
|
|
|
|
cursor.getString(cursor
|
|
|
|
.getColumnIndex(ContactsContract.Data.DISPLAY_NAME)));
|
|
|
|
contact.putString(
|
|
|
|
"photouri",
|
|
|
|
cursor.getString(cursor
|
|
|
|
.getColumnIndex(ContactsContract.Data.PHOTO_THUMBNAIL_URI)));
|
|
|
|
contact.putString("lookup",cursor.getString(cursor
|
|
|
|
.getColumnIndex(ContactsContract.Data.LOOKUP_KEY)));
|
|
|
|
phoneContacts.put(
|
|
|
|
cursor.getString(cursor
|
|
|
|
.getColumnIndex(ContactsContract.CommonDataKinds.Im.DATA)),
|
|
|
|
contact);
|
|
|
|
}
|
|
|
|
if (listener!=null) {
|
|
|
|
listener.onPhoneContactsLoaded(phoneContacts);
|
|
|
|
}
|
2014-02-18 19:35:23 -05:00
|
|
|
mLooper.quit();
|
2014-02-09 21:34:00 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
mCursorLoader.startLoading();
|
|
|
|
}
|
2014-02-10 09:24:34 -05:00
|
|
|
|
|
|
|
public static Uri getSefliUri(Activity activity) {
|
|
|
|
String[] mProjection = new String[] { Profile._ID,
|
|
|
|
Profile.PHOTO_THUMBNAIL_URI };
|
|
|
|
Cursor mProfileCursor = activity.getContentResolver().query(
|
|
|
|
Profile.CONTENT_URI, mProjection, null, null, null);
|
|
|
|
|
|
|
|
if (mProfileCursor.getCount()==0) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
mProfileCursor.moveToFirst();
|
|
|
|
return Uri.parse(mProfileCursor.getString(1));
|
|
|
|
}
|
|
|
|
}
|
2014-02-09 21:34:00 -05:00
|
|
|
}
|