Home
last modified time | relevance | path

Searched refs:contactInfo (Results 1 – 3 of 3) sorted by relevance

/development/samples/BusinessCard/src/com/example/android/businesscard/
DContactAccessorSdk3_4.java56 ContactInfo contactInfo = new ContactInfo(); in loadContact() local
61 contactInfo.setDisplayName(cursor.getString(0)); in loadContact()
73 contactInfo.setPhoneNumber(cursor.getString(0)); in loadContact()
79 return contactInfo; in loadContact()
DContactAccessorSdk5.java59 ContactInfo contactInfo = new ContactInfo(); in loadContact() local
68 contactInfo.setDisplayName(cursor.getString(1)); in loadContact()
80 contactInfo.setPhoneNumber(cursor.getString(0)); in loadContact()
86 return contactInfo; in loadContact()
DBusinessCardActivity.java118 protected void bindView(ContactInfo contactInfo) { in bindView() argument
120 displayNameView.setText(contactInfo.getDisplayName()); in bindView()
123 phoneNumberView.setText(contactInfo.getPhoneNumber()); in bindView()