Ejemplo n.º 1
0
		public static ImageLoader CreateImageLoaderInstance(Context context)
		{
			if (_instance == null) {
				lock (lockHelper) {
					if (_instance == null)
						_instance = new ImageLoader (context);
				}
			}
			return _instance;
		}
Ejemplo n.º 2
0
 public PhotosLoader(PhotoToLoad photoToLoad, ImageLoader _imageLoader)
 {
     this.photoToLoad = photoToLoad;
     imageLoader      = _imageLoader;
 }
Ejemplo n.º 3
0
 public BitmapDisplayer(Bitmap b, PhotoToLoad p, ImageLoader _imageLoader)
 {
     bitmap      = b;
     photoToLoad = p;
     imageLoader = _imageLoader;
 }
Ejemplo n.º 4
0
		public	PhotosLoader(PhotoToLoad photoToLoad,ImageLoader _imageLoader){
			this.photoToLoad=photoToLoad;
			imageLoader = _imageLoader;
		}
Ejemplo n.º 5
0
		public BitmapDisplayer(Bitmap b, PhotoToLoad p,ImageLoader _imageLoader){
			bitmap=b;
			photoToLoad=p;
			imageLoader = _imageLoader;
		}