OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:contactloader
(Results
1 - 13
of
13
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/
ViewNotificationService.java
27
import com.android.contacts.model.
ContactLoader
;
45
final
ContactLoader
contactLoader
= new
ContactLoader
(this, intent.getData(), true);
46
contactLoader
.registerListener(0, new OnLoadCompleteListener<Contact>() {
67
contactLoader
.startLoading();
/packages/apps/Contacts/src/com/android/contacts/socialwidget/
SocialWidgetProvider.java
43
import com.android.contacts.model.
ContactLoader
;
61
private static SparseArray<
ContactLoader
> sLoaders = new SparseArray<
ContactLoader
>();
77
ContactLoader
loader = sLoaders.get(appWidgetId);
89
ContactLoader
previousLoader = sLoaders.get(widgetId);
116
final
ContactLoader
contactLoader
= new
ContactLoader
(context, contactUri, false, true,
118
contactLoader
.registerListener(0,
119
new
ContactLoader
.OnLoadCompleteListener<Contact>()
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/detail/
ContactLoaderFragment.java
48
import com.android.contacts.model.
ContactLoader
;
188
return new
ContactLoader
(mContext, lookupUri, true /* loadGroupMetaData */,
201
// This shouldn't ever happen, so throw an exception. The {@link
ContactLoader
}
205
Log.i(TAG, "No contact found: " + ((
ContactLoader
)loader).getLookupUri());
466
ContactLoader
loader = (
ContactLoader
) loaderObj;
473
ContactLoader
loader = (
ContactLoader
) loaderObj;
ContactDetailFragment.java
806
// Note: invitableCount will always be 0 for me profile. (
ContactLoader
won't set
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/activities/
AttachPhotoActivity.java
37
import com.android.contacts.model.
ContactLoader
;
141
// TODO: consider moving this to
ContactLoader
, especially if we keep adding similar
146
final
ContactLoader
loader = new
ContactLoader
(this, contactUri, true);
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactLoader.java
31
public class
ContactLoader
extends AsyncTaskLoader<
ContactLoader
.ContactData> {
153
public
ContactLoader
(Context context, Uri lookupUri) {
/packages/apps/Contacts/src/com/android/contacts/util/
ContactLoaderUtils.java
27
* Utility methods for the {@link
ContactLoader
}.
/packages/apps/Contacts/src/com/android/contacts/model/
Contact.java
46
* Only the {@link
ContactLoader
} class can create a Contact object with various flags to allow
249
* Returns the URI for which this {@link
ContactLoader
) was initially requested.
340
* This can return non-null invitable account types only if the {@link
ContactLoader
} was
353
* This can return non-null stream items only if the {@link
ContactLoader
} was
450
* This can return non-null group meta-data only if the {@link
ContactLoader
} was configured to
ContactLoader.java
73
public class
ContactLoader
extends AsyncTaskLoader<Contact> {
74
private static final String TAG =
ContactLoader
.class.getSimpleName();
92
public
ContactLoader
(Context context, Uri lookupUri, boolean postViewNotification) {
96
public
ContactLoader
(Context context, Uri lookupUri, boolean loadGroupMetaData,
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java
62
import com.android.contacts.model.
ContactLoader
;
116
private
ContactLoader
mContactLoader;
183
mContactLoader = (
ContactLoader
) getLoaderManager().initLoader(
330
* Handle the result from the
ContactLoader
507
// This shouldn't ever happen, so throw an exception. The {@link
ContactLoader
}
512
Log.i(TAG, "No contact found: " + ((
ContactLoader
)loader).getLookupUri());
550
return new
ContactLoader
(getApplicationContext(), mLookupUri, false);
/packages/apps/Contacts/tests/src/com/android/contacts/model/
ContactLoaderTest.java
41
* Runs
ContactLoader
tests for the the contact-detail and editor view.
79
final
ContactLoader
loader = new
ContactLoader
(mMockContext, uri, true);
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java
22
import com.android.loaderapp.model.
ContactLoader
;
27
import com.android.loaderapp.model.
ContactLoader
.ContactData;
199
return new
ContactLoader
(getActivity(), uri);
/packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java
75
import com.android.contacts.model.
ContactLoader
;
[
all
...]
Completed in 103 milliseconds