fresco--facebook推出的一款强大的android图片处理库

先看效果图fresco--facebook推出的一款强大的android图片处理库_第1张图片

参考资料:http://fresco-cn.org/docs/getting-started.html#_   
http://www.wfuyu.com/technology/23636.html
fresco是facebook推出的一款强大的android图片处理库, github地址:https://github.com/facebook/fresco 里面有官方的使用配置文档,而且是中文的。
一、加入引用
compile 'com.facebook.fresco:fresco:0.11.0'
二、fresco是通过控件来实现它内部的优化缓存处理,我们使用的时候是通过控件来使用,具体如下


  




三、代码中具体使用
 Fresco.initialize(MainActivity.this);//初始化
 setContentView(R.layout.activity_main);
 iv_player_head= (SimpleDraweeView) this.findViewById(R.id.iv_player_head);     
 iv_player_head.setImageURI(Uri.parse("http://avatar.csdn.net/5/D/9/1_vatty748895431.jpg"));


记得加权限

你可能感兴趣的:(移动开发,fresco,Android,图片处理)