圖片加載在 Android開發項目中是必不可少的,爲了下降開發週期和難度,咱們常常會選用一些圖片加載的開源庫,而Android發展到如今圖片加載開源庫也愈來愈多了,下面介紹 Picasso 開源圖片加載庫.android
Picasso
中文翻譯爲'畢加索',由Square公司開源的一個適用於Android的強大圖像下載和緩存庫.segmentfault
implementation 'com.squareup.picasso:picasso:2.71828'
複製代碼
<uses-permission android:name="android.permission.INTERNET"/>
複製代碼
ImageView mImageView = (ImageView) findViewById(R.id.ImageView);
String Url = "http:/*********";
Picasso .with(this)
.load(Url)
.into(targetImageView);
複製代碼
ImageView targetImageView = (ImageView) findViewById(R.id.ImageView);
String Url = "http://**********";
//Picasso使用了流式接口的調用方式
Picasso .with(context)
.load(Url)
.into(targetImageView);
複製代碼
Picasso.with(context)
.load(url)
//裁剪圖片尺寸
.resize(50, 50)
//設置圖片圓角
.centerCrop()
.into(imageView)
複製代碼
Picasso.with(context)
.load(url)
//加載過程當中的圖片顯示
.placeholder(R.drawable.user_placeholder)
//加載失敗中的圖片顯示
//若是重試3次仍是沒法成功加載圖片,則用錯誤佔位符圖片顯示。
.error(R.drawable.user_placeholder_error)
.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(R.drawable.landing_screen).into(imageView1);
//加載本地文件
Picasso.with(context).load(new File("/images/lunch_bees.gif")).into(imageView2);
複製代碼
至此,Picasso的基本功能和使用就介紹我完畢了,感謝閱讀緩存
歡迎關注做者darryrzhong,更多幹貨等你來拿喲.bash
更多精彩文章請關注網絡