am 35468254: Merge change 26720 into eclair

Merge commit '3546825421cab5330583633ed854134c35d1c08d' into eclair-plus-aosp

* commit '3546825421cab5330583633ed854134c35d1c08d':
  Allow us to set the contact uri without setting the fast track's uri
This commit is contained in:
Neel Parekh
2009-09-25 16:11:46 -07:00
committed by Android Git Automerger

View File

@@ -319,8 +319,17 @@ public class ContactHeaderWidget extends FrameLayout implements View.OnClickList
* Manually set the contact uri
*/
public void setContactUri(Uri uri) {
setContactUri(uri, true);
}
/**
* Manually set the contact uri
*/
public void setContactUri(Uri uri, boolean sendToFastrack) {
mContactUri = uri;
mPhotoView.assignContactUri(uri);
if (sendToFastrack) {
mPhotoView.assignContactUri(uri);
}
}
/**