You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.9 KiB
50 lines
1.9 KiB
package com.keylesspalace.tusky.adapter;
|
|
|
|
import android.content.Context;
|
|
import android.support.v7.widget.RecyclerView;
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
|
|
import com.keylesspalace.tusky.R;
|
|
import com.keylesspalace.tusky.entity.Account;
|
|
import com.keylesspalace.tusky.interfaces.AccountActionListener;
|
|
import com.keylesspalace.tusky.interfaces.LinkListener;
|
|
import com.keylesspalace.tusky.util.CustomEmojiHelper;
|
|
import com.squareup.picasso.Picasso;
|
|
|
|
class AccountViewHolder extends RecyclerView.ViewHolder {
|
|
private TextView username;
|
|
private TextView displayName;
|
|
private ImageView avatar;
|
|
private String accountId;
|
|
|
|
AccountViewHolder(View itemView) {
|
|
super(itemView);
|
|
username = itemView.findViewById(R.id.account_username);
|
|
displayName = itemView.findViewById(R.id.account_display_name);
|
|
avatar = itemView.findViewById(R.id.account_avatar);
|
|
}
|
|
|
|
void setupWithAccount(Account account) {
|
|
accountId = account.getId();
|
|
String format = username.getContext().getString(R.string.status_username_format);
|
|
String formattedUsername = String.format(format, account.getUsername());
|
|
username.setText(formattedUsername);
|
|
CharSequence emojifiedName = CustomEmojiHelper.emojifyString(account.getName(), account.getEmojis(), displayName);
|
|
displayName.setText(emojifiedName);
|
|
Context context = avatar.getContext();
|
|
Picasso.with(context)
|
|
.load(account.getAvatar())
|
|
.placeholder(R.drawable.avatar_default)
|
|
.into(avatar);
|
|
}
|
|
|
|
void setupActionListener(final AccountActionListener listener) {
|
|
itemView.setOnClickListener(v -> listener.onViewAccount(accountId));
|
|
}
|
|
|
|
void setupLinkListener(final LinkListener listener) {
|
|
itemView.setOnClickListener(v -> listener.onViewAccount(accountId));
|
|
}
|
|
} |