am 246978b8: Add a method to clear info about a contact

Merge commit '246978b8dc89562dda47fea9a7aee61949101242' into eclair-mr2

* commit '246978b8dc89562dda47fea9a7aee61949101242':
  Add a method to clear info about a contact
This commit is contained in:
Tom Taylor
2009-10-23 14:18:36 -07:00
committed by Android Git Automerger

View File

@@ -408,6 +408,17 @@ public class ContactHeaderWidget extends FrameLayout implements View.OnClickList
PHONE_LOOKUP_PROJECTION, null, null, null);
}
/**
* Method to force this widget to forget everything it knows about the contact.
* The widget isn't automatically updated or redrawn.
*
*/
public void wipeClean() {
setPhoto(null);
mContactUri = null;
mExcludeMimes = null;
}
private void startContactQuery(Uri contactUri) {
mQueryHandler.startQuery(TOKEN_CONTACT_INFO, null, contactUri, ContactQuery.COLUMNS,
null, null, null);