NekoX/TMessagesProj/src/main/java/org/telegram/ui/Cells/MentionCell.java

270 lines
10 KiB
Java

/*
* This is the source code of Telegram for Android v. 5.x.x
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013-2018.
*/
package org.telegram.ui.Cells;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.text.TextUtils;
import android.util.Log;
import android.util.TypedValue;
import android.view.Gravity;
import android.widget.LinearLayout;
import android.widget.TextView;
import org.telegram.messenger.AndroidUtilities;
import org.telegram.messenger.MediaDataController;
import org.telegram.messenger.Emoji;
import org.telegram.messenger.UserConfig;
import org.telegram.messenger.UserObject;
import org.telegram.tgnet.TLRPC;
import org.telegram.ui.ActionBar.Theme;
import org.telegram.ui.Components.AnimatedEmojiDrawable;
import org.telegram.ui.Components.AvatarDrawable;
import org.telegram.ui.Components.BackupImageView;
import org.telegram.ui.Components.EmojiTextView;
import org.telegram.ui.Components.LayoutHelper;
public class MentionCell extends LinearLayout {
private BackupImageView imageView;
private TextView nameTextView;
private TextView usernameTextView;
private AvatarDrawable avatarDrawable;
private Theme.ResourcesProvider resourcesProvider;
private Drawable emojiDrawable;
public MentionCell(Context context, Theme.ResourcesProvider resourcesProvider) {
super(context);
this.resourcesProvider = resourcesProvider;
setOrientation(HORIZONTAL);
avatarDrawable = new AvatarDrawable();
avatarDrawable.setTextSize(AndroidUtilities.dp(12));
imageView = new BackupImageView(context);
imageView.setRoundRadius(AndroidUtilities.dp(14));
addView(imageView, LayoutHelper.createLinear(28, 28, 12, 4, 0, 0));
nameTextView = new EmojiTextView(context);
nameTextView.setTextColor(getThemedColor(Theme.key_windowBackgroundWhiteBlackText));
nameTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 15);
nameTextView.setSingleLine(true);
nameTextView.setGravity(Gravity.LEFT);
nameTextView.setEllipsize(TextUtils.TruncateAt.END);
addView(nameTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_VERTICAL, 12, 0, 0, 0));
usernameTextView = new EmojiTextView(context);
usernameTextView.setTextColor(getThemedColor(Theme.key_windowBackgroundWhiteGrayText3));
usernameTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 15);
usernameTextView.setSingleLine(true);
usernameTextView.setGravity(Gravity.LEFT);
usernameTextView.setEllipsize(TextUtils.TruncateAt.END);
addView(usernameTextView, LayoutHelper.createLinear(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT, Gravity.CENTER_VERTICAL, 12, 0, 8, 0));
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(widthMeasureSpec), MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(36), MeasureSpec.EXACTLY));
}
public void setUser(TLRPC.User user) {
resetEmojiSuggestion();
if (user == null) {
nameTextView.setText("");
usernameTextView.setText("");
imageView.setImageDrawable(null);
return;
}
avatarDrawable.setInfo(user);
if (user.photo != null && user.photo.photo_small != null) {
imageView.setForUserOrChat(user, avatarDrawable);
} else {
imageView.setImageDrawable(avatarDrawable);
}
nameTextView.setText(UserObject.getUserName(user));
if (user.username != null) {
usernameTextView.setText("@" + user.username);
} else {
usernameTextView.setText("");
}
imageView.setVisibility(VISIBLE);
usernameTextView.setVisibility(VISIBLE);
}
private boolean needsDivider = false;
public void setDivider(boolean enabled) {
if (enabled != needsDivider) {
needsDivider = enabled;
setWillNotDraw(!needsDivider);
invalidate();
}
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (needsDivider) {
canvas.drawLine(AndroidUtilities.dp(52), getHeight() - 1, getWidth() - AndroidUtilities.dp(8), getHeight() - 1, Theme.dividerPaint);
}
}
public void setChat(TLRPC.Chat chat) {
resetEmojiSuggestion();
if (chat == null) {
nameTextView.setText("");
usernameTextView.setText("");
imageView.setImageDrawable(null);
return;
}
avatarDrawable.setInfo(chat);
if (chat.photo != null && chat.photo.photo_small != null) {
imageView.setForUserOrChat(chat, avatarDrawable);
} else {
imageView.setImageDrawable(avatarDrawable);
}
nameTextView.setText(chat.title);
if (chat.username != null) {
usernameTextView.setText("@" + chat.username);
} else {
usernameTextView.setText("");
}
imageView.setVisibility(VISIBLE);
usernameTextView.setVisibility(VISIBLE);
}
public void setText(String text) {
resetEmojiSuggestion();
imageView.setVisibility(INVISIBLE);
usernameTextView.setVisibility(INVISIBLE);
nameTextView.setText(text);
}
@Override
public void invalidate() {
super.invalidate();
nameTextView.invalidate();
}
public void resetEmojiSuggestion() {
nameTextView.setPadding(0, 0, 0, 0);
if (emojiDrawable != null) {
if (emojiDrawable instanceof AnimatedEmojiDrawable) {
((AnimatedEmojiDrawable) emojiDrawable).removeView(this);
}
emojiDrawable = null;
invalidate();
}
}
public void setEmojiSuggestion(MediaDataController.KeywordResult suggestion) {
imageView.setVisibility(INVISIBLE);
usernameTextView.setVisibility(INVISIBLE);
if (suggestion.emoji != null && suggestion.emoji.startsWith("animated_")) {
try {
if (emojiDrawable instanceof AnimatedEmojiDrawable) {
((AnimatedEmojiDrawable) emojiDrawable).removeView(this);
emojiDrawable = null;
}
long documentId = Long.parseLong(suggestion.emoji.substring(9));
emojiDrawable = AnimatedEmojiDrawable.make(UserConfig.selectedAccount, AnimatedEmojiDrawable.CACHE_TYPE_MESSAGES, documentId);
if (attached) {
((AnimatedEmojiDrawable) emojiDrawable).addView(this);
}
} catch (Exception ignore) {
emojiDrawable = Emoji.getEmojiDrawable(suggestion.emoji);
}
} else {
emojiDrawable = Emoji.getEmojiDrawable(suggestion.emoji);
}
if (emojiDrawable == null) {
nameTextView.setPadding(0, 0, 0, 0);
nameTextView.setText(new StringBuilder().append(suggestion.emoji).append(": ").append(suggestion.keyword));
} else {
nameTextView.setPadding(AndroidUtilities.dp(22), 0, 0, 0);
nameTextView.setText(new StringBuilder().append(": ").append(suggestion.keyword));
}
}
@Override
protected void dispatchDraw(Canvas canvas) {
super.dispatchDraw(canvas);
if (emojiDrawable != null) {
final int sz = AndroidUtilities.dp(emojiDrawable instanceof AnimatedEmojiDrawable ? 24 : 20);
final int offsetX = AndroidUtilities.dp(emojiDrawable instanceof AnimatedEmojiDrawable ? -2 : 0);
emojiDrawable.setBounds(
nameTextView.getLeft() + offsetX,
(nameTextView.getTop() + nameTextView.getBottom() - sz) / 2,
nameTextView.getLeft() + offsetX + sz,
(nameTextView.getTop() + nameTextView.getBottom() + sz) / 2
);
if (emojiDrawable instanceof AnimatedEmojiDrawable) {
((AnimatedEmojiDrawable) emojiDrawable).setTime(System.currentTimeMillis());
}
emojiDrawable.draw(canvas);
}
}
public void setBotCommand(String command, String help, TLRPC.User user) {
resetEmojiSuggestion();
if (user != null) {
imageView.setVisibility(VISIBLE);
avatarDrawable.setInfo(user);
if (user.photo != null && user.photo.photo_small != null) {
imageView.setForUserOrChat(user, avatarDrawable);
} else {
imageView.setImageDrawable(avatarDrawable);
}
} else {
imageView.setVisibility(INVISIBLE);
}
usernameTextView.setVisibility(VISIBLE);
nameTextView.setText(command);
usernameTextView.setText(help);
}
public void setIsDarkTheme(boolean isDarkTheme) {
if (isDarkTheme) {
nameTextView.setTextColor(0xffffffff);
usernameTextView.setTextColor(0xffbbbbbb);
} else {
nameTextView.setTextColor(getThemedColor(Theme.key_windowBackgroundWhiteBlackText));
usernameTextView.setTextColor(getThemedColor(Theme.key_windowBackgroundWhiteGrayText3));
}
}
private int getThemedColor(String key) {
Integer color = resourcesProvider != null ? resourcesProvider.getColor(key) : null;
return color != null ? color : Theme.getColor(key);
}
private boolean attached;
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
attached = false;
if (emojiDrawable instanceof AnimatedEmojiDrawable) {
((AnimatedEmojiDrawable) emojiDrawable).removeView(this);
}
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
attached = true;
if (emojiDrawable instanceof AnimatedEmojiDrawable) {
((AnimatedEmojiDrawable) emojiDrawable).addView(this);
}
}
}