HomeSort by relevance Sort by last modified time
    Searched refs:ContactPhotoManager (Results 1 - 25 of 39) sorted by null

1 2

  /packages/apps/Dialer/java/com/android/dialer/app/filterednumber/
ViewNumbersToImportAdapter.java 22 import com.android.contacts.common.ContactPhotoManager;
34 ContactPhotoManager contactPhotoManager) {
35 super(context, fragmentManager, contactInfoHelper, contactPhotoManager);
44 ContactPhotoManager.getInstance(context));
NumbersAdapter.java 29 import com.android.contacts.common.ContactPhotoManager;
30 import com.android.contacts.common.ContactPhotoManager.DefaultImageRequest;
44 private ContactPhotoManager mContactPhotoManager;
50 ContactPhotoManager contactPhotoManager) {
55 mContactPhotoManager = contactPhotoManager;
101 ? ContactPhotoManager.TYPE_BUSINESS
102 : ContactPhotoManager.TYPE_DEFAULT;
BlockedNumbersAdapter.java 23 import com.android.contacts.common.ContactPhotoManager;
38 ContactPhotoManager contactPhotoManager) {
39 super(context, fragmentManager, contactInfoHelper, contactPhotoManager);
48 ContactPhotoManager.getInstance(context));
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 29 import com.android.contacts.ContactPhotoManager;
63 final ContactPhotoManager.DefaultImageRequest
64 request = new ContactPhotoManager.DefaultImageRequest(
68 ContactPhotoManager.getInstance(getContext()).loadThumbnail(photoView,
EditorUiUtils.java 47 import com.android.contacts.ContactPhotoManager;
48 import com.android.contacts.ContactPhotoManager.DefaultImageProvider;
49 import com.android.contacts.ContactPhotoManager.DefaultImageRequest;
239 static void loadPhoto(ContactPhotoManager contactPhotoManager, ImageView imageView,
249 contactPhotoManager.loadPhoto(imageView, photoUri, imageView.getWidth(),
266 imageView.setImageDrawable(ContactPhotoManager.getDefaultAvatarDrawableForContact(
PhotoEditorView.java 29 import com.android.contacts.ContactPhotoManager;
201 EditorUiUtils.loadPhoto(ContactPhotoManager.getInstance(getContext()),
PickRawContactDialogFragment.java 19 import com.android.contacts.ContactPhotoManager;
132 final ContactPhotoManager.DefaultImageRequest
133 request = new ContactPhotoManager.DefaultImageRequest(
136 ContactPhotoManager.getInstance(mContext).loadThumbnail(holder.photo,
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactTileView.java 27 import com.android.contacts.common.ContactPhotoManager;
28 import com.android.contacts.common.ContactPhotoManager.DefaultImageRequest;
40 private ContactPhotoManager mPhotoManager = null;
69 public void setPhotoManager(ContactPhotoManager photoManager) {
100 Log.w(TAG, "contactPhotoManager not set");
136 * means a default contact image will be applied by the {@link ContactPhotoManager}
ContactEntryListAdapter.java 36 import com.android.contacts.common.ContactPhotoManager;
37 import com.android.contacts.common.ContactPhotoManager.DefaultImageRequest;
68 private ContactPhotoManager mPhotoLoader;
289 protected ContactPhotoManager getPhotoLoader() {
293 public void setPhotoLoader(ContactPhotoManager photoLoader) {
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockContactPhotoManager.java 24 import com.android.contacts.ContactPhotoManager;
30 public class MockContactPhotoManager extends ContactPhotoManager {
  /packages/apps/Contacts/src/com/android/contacts/util/
ImageViewDrawableSetter.java 29 import com.android.contacts.ContactPhotoManager;
30 import com.android.contacts.ContactPhotoManager.DefaultImageRequest;
146 int contactType = ContactPhotoManager.TYPE_DEFAULT;
149 contactType = ContactPhotoManager.TYPE_BUSINESS;
159 return ContactPhotoManager.getDefaultAvatarDrawableForContact(resources, true, request);
  /packages/apps/Dialer/java/com/android/dialer/app/list/
PhoneFavoriteTileView.java 25 import com.android.contacts.common.ContactPhotoManager;
26 import com.android.contacts.common.ContactPhotoManager.DefaultImageRequest;
136 ContactPhotoManager.TYPE_DEFAULT,
  /packages/apps/Dialer/java/com/android/incallui/
ConferenceManagerFragment.java 24 import com.android.contacts.common.ContactPhotoManager;
39 private ContactPhotoManager mContactPhotoManager;
66 mContactPhotoManager = ContactPhotoManager.getInstance(getActivity().getApplicationContext());
ConferenceParticipantListAdapter.java 34 import com.android.contacts.common.ContactPhotoManager;
35 import com.android.contacts.common.ContactPhotoManager.DefaultImageRequest;
63 private final ContactPhotoManager mContactPhotoManager;
98 * @param contactPhotoManager The contact photo manager, used to load contact photos.
101 ListView listView, ContactPhotoManager contactPhotoManager) {
105 mContactPhotoManager = contactPhotoManager;
  /packages/apps/Dialer/java/com/android/contacts/common/
ContactPhotoManager.java 37 public abstract class ContactPhotoManager implements ComponentCallbacks2 {
68 private static ContactPhotoManager sInstance;
72 * avatar when passed to the {@link ContactPhotoManager}. The internal implementation of this uri
77 * @return A Uri that when later passed to the {@link ContactPhotoManager} via {@link
181 "ContactPhotoManager.getDefaultImageRequestFromUri",
189 public static ContactPhotoManager getInstance(Context context) {
201 public static synchronized ContactPhotoManager createContactPhotoManager(Context context) {
206 public static void injectContactPhotoManagerForTesting(ContactPhotoManager photoManager) {
250 ContactPhotoManager.DefaultImageRequest request =
251 new ContactPhotoManager.DefaultImageRequest
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
MultiSelectEntryContactListAdapter.java 25 import com.android.contacts.ContactPhotoManager;
171 final ContactPhotoManager.DefaultImageRequest imageRequest = photoId == 0
ContactEntryListAdapter.java 37 import com.android.contacts.ContactPhotoManager;
38 import com.android.contacts.ContactPhotoManager.DefaultImageRequest;
81 private ContactPhotoManager mPhotoLoader;
306 public void setPhotoLoader(ContactPhotoManager photoLoader) {
310 protected ContactPhotoManager getPhotoLoader() {
  /packages/apps/Dialer/java/com/android/dialer/calldetails/
CallDetailsHeaderViewHolder.java 27 import com.android.contacts.common.ContactPhotoManager;
61 ContactPhotoManager.getInstance(context)
  /packages/apps/Dialer/java/com/android/dialer/contactsfragment/
ContactsAdapter.java 28 import com.android.contacts.common.ContactPhotoManager;
66 ContactPhotoManager.getInstance(context)
  /packages/apps/Contacts/src/com/android/contacts/dialog/
CallSubjectDialog.java 48 import com.android.contacts.ContactPhotoManager;
399 contactType = ContactPhotoManager.TYPE_BUSINESS;
401 contactType = ContactPhotoManager.TYPE_DEFAULT;
409 ContactPhotoManager.DefaultImageRequest
410 request = new ContactPhotoManager.DefaultImageRequest(
414 ContactPhotoManager.getInstance(this).loadPhoto(mContactPhoto, photoUri,
417 ContactPhotoManager.getInstance(this).loadThumbnail(mContactPhoto, photoId,
  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
PeopleActivityTest.java 30 import com.android.contacts.ContactPhotoManager;
84 ContactPhotoManager.injectContactPhotoManagerForTesting(new MockContactPhotoManager());
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 86 public abstract class ContactPhotoManager implements ComponentCallbacks2 {
87 static final String TAG = "ContactPhotoManager";
117 private static ContactPhotoManager sInstance;
141 * letter tile avatar when passed to the {@link ContactPhotoManager}. The internal
147 * @return A Uri that when later passed to the {@link ContactPhotoManager} via
265 * be used by the ContactPhotoManager to generate a default contact image. This contact image
437 public static ContactPhotoManager getInstance(Context context) {
449 public static synchronized ContactPhotoManager createContactPhotoManager(Context context) {
454 public static void injectContactPhotoManagerForTesting(ContactPhotoManager photoManager) {
583 class ContactPhotoManagerImpl extends ContactPhotoManager implements Callback
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
SimContact.java 29 import com.android.contacts.ContactPhotoManager;
139 * {@link ContactPhotoManager} will only generate a letter avatar
  /packages/apps/Dialer/java/com/android/contacts/common/dialog/
CallSubjectDialog.java 46 import com.android.contacts.common.ContactPhotoManager;
205 ContactPhotoManager.TYPE_DEFAULT,
219 * @param contactType The contact type according to {@link ContactPhotoManager}.
326 ContactPhotoManager.getInstance(this)
359 mContactType = arguments.getInt(ARG_CONTACT_TYPE, ContactPhotoManager.TYPE_DEFAULT);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogListItemViewHolder.java 48 import com.android.contacts.common.ContactPhotoManager;
710 ContactPhotoManager.getInstance(mContext)
721 int contactType = ContactPhotoManager.TYPE_DEFAULT;
723 contactType = ContactPhotoManager.TYPE_VOICEMAIL;
725 contactType = ContactPhotoManager.TYPE_SPAM;
728 contactType = ContactPhotoManager.TYPE_BUSINESS;
730 contactType = ContactPhotoManager.TYPE_GENERIC_AVATAR;
    [all...]

Completed in 214 milliseconds

1 2