- 授权协议: Apache
- 开发语言: Java
- 操作系统: Android
- 软件首页: http://square.github.io/picasso/
- 官方下载: https://github.com/square/picasso
软件介绍
Picasso 是 Android 上一个强大的图片下载和缓存库。
示例代码:
Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);
@Override public void getView(int position, View convertView, ViewGroup parent) {
SquaredImageView view = (SquaredImageView) convertView;
if (view == null) {
view = new SquaredImageView(context);
}
String url = getItem(position);
Picasso.with(context).load(url).into(view);
}
//图像处理
Picasso.with(context)
.load(url)
.resize(50, 50)
.centerCrop()
.into(imageView)
Web Anatomy
Robert Hoekman Jr.、Jared Spool / New Riders / 2009-12-11 / USD 39.99
At the start of every web design project, the ongoing struggles reappear. We want to design highly usable and self-evident applications, but we also want to devise innovative, compelling, and exciting......一起来看看 《Web Anatomy》 这本书的介绍吧!
