JoanZapata / base-adapter-helper

Abstraction for the usual BaseAdapter "ViewHolder" pattern
http://joanzapata.com/base-adapter-helper/
Other
1.76k stars 530 forks source link

This lib just support Picasso ImageLoader? #61

Closed eling13 closed 8 years ago

eling13 commented 9 years ago

If I want to use the picasso.Transformation,how can I do? Not support deliver the parameter like Transformation into the setImageUrl..API ??

gzu-liyujiang commented 8 years ago

建议作者把异步加载图片的那两个方法抽象出来,由其他开发者继承实现,自选图片加载框架。

Google Translate: The authors recommend that the two asynchronous Load picture abstract method inherited by other developers to implement, managed image loading frame.

JoanZapata commented 8 years ago

You can use setImageBuilder.

helper.setImageBuilder(R.id.image, 
    Picasso.with(context).load("...").transform(your_transformation_here));