Home | History | Annotate | Download | only in common

Lines Matching refs:photoUri

175      * @param photoUri The uri of the photo to load
181 * @param defaultProvider The provider of default avatars (this is used if photoUri doesn't
184 public abstract void loadPhoto(ImageView view, Uri photoUri, int requestedExtent,
191 public final void loadPhoto(ImageView view, Uri photoUri, int requestedExtent,
193 loadPhoto(view, photoUri, requestedExtent, darkTheme, DEFAULT_AVATAR);
200 public final void loadDirectoryPhoto(ImageView view, Uri photoUri, boolean darkTheme) {
201 loadPhoto(view, photoUri, -1, darkTheme, DEFAULT_AVATAR);
229 * @param photoUri The URI of the photo (for future requests).
233 public abstract void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes);
483 public void loadPhoto(ImageView view, Uri photoUri, int requestedExtent, boolean darkTheme,
485 if (photoUri == null) {
490 if (DEBUG) Log.d(TAG, "loadPhoto request: " + photoUri);
491 loadPhotoByIdOrUri(view, Request.createFromUri(photoUri, requestedExtent, darkTheme,
780 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) {
784 Request request = Request.createFromUri(photoUri, smallerExtent, false, DEFAULT_AVATAR);