Home | History | Annotate | Download | only in editor

Lines Matching refs:suggestion

30 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
39 * A view that contains a name, picture and other data for a contact aggregation suggestion.
80 public void bindSuggestion(Suggestion suggestion) {
81 mContactId = suggestion.contactId;
82 mLookupKey = suggestion.lookupKey;
83 mRawContacts = suggestion.rawContacts;
85 if (suggestion.photo != null) {
87 suggestion.photo, 0, suggestion.photo.length));
93 name.setText(suggestion.name);
97 if (suggestion.nickname != null) {
98 dataText = suggestion.nickname;
99 } else if (suggestion.emailAddress != null) {
100 dataText = suggestion.emailAddress;
101 } else if (suggestion.phoneNumber != null) {
102 dataText = suggestion.phoneNumber;