Home | History | Annotate | Download | only in common

Lines Matching refs:photoUri

174      * @param photoUri The uri of the photo to load
180 * @param defaultProvider The provider of default avatars (this is used if photoUri doesn't
183 public abstract void loadPhoto(ImageView view, Uri photoUri, int requestedExtent,
190 public final void loadPhoto(ImageView view, Uri photoUri, int requestedExtent,
192 loadPhoto(view, photoUri, requestedExtent, darkTheme, DEFAULT_AVATAR);
199 public final void loadDirectoryPhoto(ImageView view, Uri photoUri, boolean darkTheme) {
200 loadPhoto(view, photoUri, -1, darkTheme, DEFAULT_AVATAR);
228 * @param photoUri The URI of the photo (for future requests).
232 public abstract void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes);
482 public void loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme,
484 if (photoUri == null) {
489 if (DEBUG) Log.d(TAG, "loadPhoto request: " + photoUri);
490 loadPhotoByIdOrUri(view, Request.createFromUri(photoUri, requestedExtent, darkTheme,
778 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) {
782 Request request = Request.createFromUri(photoUri, smallerExtent, false, DEFAULT_AVATAR);