OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
224
// {@value com.android.dialer.calllog.
ContactInfo
#GEOCODE_AS_LABEL}
252
// {@value com.android.dialer.calllog.
ContactInfo
#GEOCODE_AS_LABEL}
267
// {@link com.android.dialer.calllog.
ContactInfo
#GEOCODE_AS_LABEL}
494
ContactInfo
contactInfo
= new
ContactInfo
();
495
contactInfo
.lookupUri = TEST_LOOKUP_URI;
496
contactInfo
.name = cachedName;
497
contactInfo
.type = cachedNumberType;
498
contactInfo
.label = cachedNumberLabel
[
all
...]
Completed in 2540 milliseconds