fix bug where avatars where shown too small (#1199)

This commit is contained in:
Konrad Pozniak 2019-04-19 15:23:30 +02:00 committed by GitHub
parent 76ce28980c
commit fb2d3024ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -50,9 +50,12 @@ public class StatusViewHolder extends StatusBaseViewHolder {
super.setAvatar(url, rebloggedUrl, isBot);
Context context = avatar.getContext();
if (!TextUtils.isEmpty(rebloggedUrl)) {
int padding = Utils.dpToPx(context, 12);
avatar.setPaddingRelative(0, 0, padding, padding);
boolean hasReblog = rebloggedUrl != null && !rebloggedUrl.isEmpty();
int padding = hasReblog ? Utils.dpToPx(context, 12) : 0;
avatar.setPaddingRelative(0, 0, padding, padding);
if (hasReblog) {
avatarInset.setVisibility(View.VISIBLE);
Glide.with(context)
.load(rebloggedUrl)