HomeSort by relevance Sort by last modified time
    Searched defs:contactInfo (Results 1 - 4 of 4) sorted by null

  /development/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 99 AsyncTask<Uri, Void, ContactInfo> task = new AsyncTask<Uri, Void, ContactInfo>() {
102 protected ContactInfo doInBackground(Uri... uris) {
107 protected void onPostExecute(ContactInfo result) {
118 protected void bindView(ContactInfo contactInfo) {
120 displayNameView.setText(contactInfo.getDisplayName());
123 phoneNumberView.setText(contactInfo.getPhoneNumber());
ContactAccessorSdk3_4.java 55 public ContactInfo loadContact(ContentResolver contentResolver, Uri contactUri) {
56 ContactInfo contactInfo = new ContactInfo();
61 contactInfo.setDisplayName(cursor.getString(0));
73 contactInfo.setPhoneNumber(cursor.getString(0));
79 return contactInfo;
ContactAccessorSdk5.java 58 public ContactInfo loadContact(ContentResolver contentResolver, Uri contactUri) {
59 ContactInfo contactInfo = new ContactInfo();
68 contactInfo.setDisplayName(cursor.getString(1));
80 contactInfo.setPhoneNumber(cursor.getString(0));
86 return contactInfo;
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogFragmentTest.java 473 ContactInfo contactInfo = new ContactInfo();
474 contactInfo.lookupUri = TEST_LOOKUP_URI;
475 contactInfo.name = cachedName;
476 contactInfo.type = cachedNumberType;
477 contactInfo.label = cachedNumberLabel;
482 contactInfo.formattedNumber = formattedNumber;
483 contactInfo.normalizedNumber = number;
484 contactInfo.photoId = 0
    [all...]

Completed in 668 milliseconds