android 常见第三方库的使用

1.圆角图像


配置:

compile 'de.hdodenhof:circleimageview:2.1.0'

代码
 

                         //边框大小

android 常见第三方库的使用_第1张图片

 

2.异步加载图像

配置

compile 'com.github.bumptech.glide:glide:3.7.0'

代码

  

 Glide.with(context).load(string).placeholder(R.color.test).into(image);

  string 为加载url地址,placeholder默认图像,image为图像控件

你可能感兴趣的:(andriod)