ContactListListenerAdapterpublic class ContactListListenerAdapter extends IContactListListener.Stub
Fields Summary |
---|
private static final String | TAG | private final com.android.im.app.SimpleAlertHandler | mHandler |
Methods Summary |
---|
public void | onAllContactListsLoaded()
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "onAllContactListsLoaded");
}
| public void | onContactChange(int type, com.android.im.IContactList list, com.android.im.engine.Contact contact)
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "onContactListChanged(" + type + ", " + list + ", "
+ contact + ")");
}
| public void | onContactError(int errorType, com.android.im.engine.ImErrorInfo error, java.lang.String listName, com.android.im.engine.Contact contact)
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "onContactError(" + errorType + ", " + error + ", "
+ listName + ", " + contact + ")");
}
mHandler.showContactError(errorType, error, listName, contact);
| public void | onContactsPresenceUpdate(com.android.im.engine.Contact[] contacts)
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "onContactsPresenceUpdate(" + contacts.length + ")");
}
|
|