예제 #1
0
파일: SliderView.java 프로젝트: uxrp/Cross
 public SliderView(Context context) {
   super(context);
   this.imageLoader = Utils.getImageLoader(context);
   this.context = context;
   DisplayImageOptions displayImageOptions =
       new DisplayImageOptions.Builder()
           .cacheInMemory(true)
           .imageScaleType(ImageScaleType.EXACTLY_STRETCHED)
           .build();
   ImageLoaderConfiguration config =
       new ImageLoaderConfiguration.Builder(context)
           .memoryCache(new WeakMemoryCache())
           .defaultDisplayImageOptions(displayImageOptions)
           .build();
   ImageLoader.getInstance().init(config);
 }
예제 #2
0
파일: Album.java 프로젝트: uxrp/Cross
 public AlbumPagerAdapter(Context context, AlbumResult albumResult) {
   this.images = albumResult.getAlbum().getData().getImages();
   this.mContext = context;
   imageLoader = Utils.getImageLoader(context);
 }