1 package com.android.ex.photo.loaders; 2 3 import android.graphics.Bitmap; 4 5 public interface PhotoBitmapLoaderInterface { 6 7 public void setPhotoUri(String photoUri); 8 9 public void forceLoad(); 10 11 public static class BitmapResult { 12 public static final int STATUS_SUCCESS = 0; 13 public static final int STATUS_EXCEPTION = 1; 14 15 public Bitmap bitmap; 16 public int status; 17 } 18 } 19