stop buggy gif animation for now

This commit is contained in:
Conny Duck 2019-05-08 21:42:22 +02:00
commit 4d58ecb4ea
9 changed files with 15 additions and 1 deletions

View file

@ -47,6 +47,7 @@ class AccountSelectionAdapter(context: Context): ArrayAdapter<AccountEntity>(con
displayName.text = CustomEmojiHelper.emojifyString(account.displayName, account.emojis, displayName)
if (!TextUtils.isEmpty(account.profilePictureUrl)) {
Glide.with(avatar)
.asBitmap()
.load(account.profilePictureUrl)
.placeholder(R.drawable.avatar_default)
.into(avatar)

View file

@ -39,6 +39,7 @@ class AccountViewHolder extends RecyclerView.ViewHolder {
CharSequence emojifiedName = CustomEmojiHelper.emojifyString(account.getName(), account.getEmojis(), displayName);
displayName.setText(emojifiedName);
Glide.with(avatar)
.asBitmap()
.load(account.getAvatar())
.placeholder(R.drawable.avatar_default)
.into(avatar);

View file

@ -86,6 +86,7 @@ public class BlocksAdapter extends AccountAdapter {
String formattedUsername = String.format(format, account.getUsername());
username.setText(formattedUsername);
Glide.with(avatar)
.asBitmap()
.load(account.getAvatar())
.placeholder(R.drawable.avatar_default)
.into(avatar);

View file

@ -148,6 +148,7 @@ public class ComposeAutoCompleteAdapter extends BaseAdapter
accountViewHolder.displayName.setText(emojifiedName);
if (!account.getAvatar().isEmpty()) {
Glide.with(accountViewHolder.avatar)
.asBitmap()
.load(account.getAvatar())
.placeholder(R.drawable.avatar_default)
.into(accountViewHolder.avatar);

View file

@ -88,6 +88,7 @@ public class FollowRequestsAdapter extends AccountAdapter {
String formattedUsername = String.format(format, account.getUsername());
username.setText(formattedUsername);
Glide.with(avatar)
.asBitmap()
.load(account.getAvatar())
.placeholder(R.drawable.avatar_default)
.into(avatar);

View file

@ -72,6 +72,7 @@ public class MutesAdapter extends AccountAdapter {
String formattedUsername = String.format(format, account.getUsername());
username.setText(formattedUsername);
Glide.with(avatar)
.asBitmap()
.load(account.getAvatar())
.placeholder(R.drawable.avatar_default)
.into(avatar);

View file

@ -317,6 +317,7 @@ public class NotificationsAdapter extends RecyclerView.Adapter {
avatar.setImageResource(R.drawable.avatar_default);
} else {
Glide.with(avatar)
.asBitmap()
.load(account.getAvatar())
.placeholder(R.drawable.avatar_default)
.into(avatar);

View file

@ -241,6 +241,7 @@ public abstract class StatusBaseViewHolder extends RecyclerView.ViewHolder {
avatarInset.setVisibility(View.VISIBLE);
avatarInset.setBackground(null);
Glide.with(avatarInset)
.asBitmap()
.load(rebloggedUrl)
.placeholder(R.drawable.avatar_default)
.into(avatarInset);
@ -250,6 +251,7 @@ public abstract class StatusBaseViewHolder extends RecyclerView.ViewHolder {
avatar.setImageResource(R.drawable.avatar_default);
} else {
Glide.with(avatar)
.asBitmap()
.load(url)
.placeholder(R.drawable.avatar_default)
.into(avatar);