add avatar placeholders back in (#1285)
This commit is contained in:
parent
83696b5c7f
commit
9690cd5730
|
@ -26,6 +26,7 @@ fun loadAvatar(url: String?, imageView: ImageView, @Px radius: Int, animate: Boo
|
||||||
fitCenterTransformation,
|
fitCenterTransformation,
|
||||||
RoundedCorners(radius)
|
RoundedCorners(radius)
|
||||||
)
|
)
|
||||||
|
.placeholder(R.drawable.avatar_default)
|
||||||
.into(imageView)
|
.into(imageView)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
@ -36,6 +37,7 @@ fun loadAvatar(url: String?, imageView: ImageView, @Px radius: Int, animate: Boo
|
||||||
fitCenterTransformation,
|
fitCenterTransformation,
|
||||||
RoundedCorners(radius)
|
RoundedCorners(radius)
|
||||||
)
|
)
|
||||||
|
.placeholder(R.drawable.avatar_default)
|
||||||
.into(imageView)
|
.into(imageView)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue