Home
last modified time | relevance | path

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

/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
DContactDetailFragment.java54 import com.example.android.contactslist.util.ImageLoader;
90 private ImageLoader mImageLoader; // Handles loading the contact image in a background thread
211 mImageLoader = new ImageLoader(getActivity(), getLargestScreenDimension()) { in onCreate()
568 return ImageLoader.decodeSampledBitmapFromDescriptor( in loadContactPhoto()
610 return ImageLoader.decodeSampledBitmapFromDescriptor( in loadContactPhoto()
DContactsListFragment.java61 import com.example.android.contactslist.util.ImageLoader;
98 private ImageLoader mImageLoader; // Handles loading the contact image in a background thread
179 mImageLoader = new ImageLoader(getActivity(), getListPreferredItemHeight()) { in onCreate()
608 return ImageLoader.decodeSampledBitmapFromDescriptor( in loadContactPhotoThumbnail()
/development/samples/training/ContactsList/src/com/example/android/contactslist/util/
DImageLoader.java42 public abstract class ImageLoader { class
54 protected ImageLoader(Context context, int imageSize) { in ImageLoader() method in ImageLoader