1. 程式人生 > >Glide圖片被拉伸解決方法

Glide圖片被拉伸解決方法

在使用Glide過程中會出現圖片被拉伸的情況,經查開始使用了place holde的緣故,有3種簡單方法:

1、取消使用place holde:

Glide.with(context).load(resId). into(imageView);

2、使用place holde加上dontAnimate():

Glide.with(context).load(resId).placeholder(defaultId).dontAnimate().into(imageView);

3、使用asBitmap載入:

Glide.with(context).load(imageUrl).asBitmap().placeholder(defaultId).into(imageView);