2015-05-04 11:36:18 -07:00
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
|
|
|
|
import android.content.Context;
|
2015-06-29 15:33:36 -07:00
|
|
|
import android.content.res.TypedArray;
|
2018-09-25 00:13:16 -07:00
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Color;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.graphics.Outline;
|
2018-09-25 00:13:16 -07:00
|
|
|
import android.graphics.Paint;
|
2019-09-06 14:08:46 +10:00
|
|
|
import android.graphics.drawable.Drawable;
|
2015-05-04 11:36:18 -07:00
|
|
|
import android.provider.ContactsContract;
|
2017-10-16 13:11:42 -07:00
|
|
|
import android.support.annotation.NonNull;
|
2015-05-14 08:53:35 -07:00
|
|
|
import android.support.annotation.Nullable;
|
2017-10-16 13:11:42 -07:00
|
|
|
import android.support.v7.widget.AppCompatImageView;
|
2019-09-06 14:08:46 +10:00
|
|
|
import android.text.TextUtils;
|
2015-05-04 11:36:18 -07:00
|
|
|
import android.util.AttributeSet;
|
2019-07-22 12:13:53 +10:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewOutlineProvider;
|
2017-10-16 13:11:42 -07:00
|
|
|
|
2019-07-22 12:13:53 +10:00
|
|
|
import com.lelloman.identicon.drawable.ClassicIdenticonDrawable;
|
2015-05-04 11:36:18 -07:00
|
|
|
|
2019-07-24 12:30:23 +10:00
|
|
|
import network.loki.messenger.R;
|
2019-09-06 14:08:46 +10:00
|
|
|
import org.thoughtcrime.securesms.color.MaterialColor;
|
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ContactColors;
|
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.GeneratedContactPhoto;
|
2019-09-06 11:49:02 +10:00
|
|
|
import org.thoughtcrime.securesms.loki.identicon.JazzIdenticonDrawable;
|
2017-10-16 13:11:42 -07:00
|
|
|
import org.thoughtcrime.securesms.mms.GlideRequests;
|
2015-05-04 11:36:18 -07:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2019-03-11 16:40:26 -03:00
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientExporter;
|
2019-09-06 14:08:46 +10:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2018-09-25 00:13:16 -07:00
|
|
|
import org.thoughtcrime.securesms.util.ThemeUtil;
|
2019-09-06 14:08:46 +10:00
|
|
|
import org.whispersystems.libsignal.util.guava.Optional;
|
2015-05-04 11:36:18 -07:00
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
public class AvatarImageView extends AppCompatImageView {
|
2017-10-04 14:47:29 -07:00
|
|
|
|
|
|
|
private static final String TAG = AvatarImageView.class.getSimpleName();
|
2015-05-04 11:36:18 -07:00
|
|
|
|
2018-09-25 00:13:16 -07:00
|
|
|
private static final Paint LIGHT_THEME_OUTLINE_PAINT = new Paint();
|
|
|
|
private static final Paint DARK_THEME_OUTLINE_PAINT = new Paint();
|
|
|
|
|
|
|
|
static {
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setColor(Color.argb((int) (255 * 0.2), 0, 0, 0));
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setStyle(Paint.Style.STROKE);
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setStrokeWidth(1f);
|
|
|
|
LIGHT_THEME_OUTLINE_PAINT.setAntiAlias(true);
|
|
|
|
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setColor(Color.argb((int) (255 * 0.2), 255, 255, 255));
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setStyle(Paint.Style.STROKE);
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setStrokeWidth(1f);
|
|
|
|
DARK_THEME_OUTLINE_PAINT.setAntiAlias(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean inverted;
|
|
|
|
private Paint outlinePaint;
|
|
|
|
private OnClickListener listener;
|
2019-07-22 12:13:53 +10:00
|
|
|
private Recipient recipient;
|
2015-06-29 15:33:36 -07:00
|
|
|
|
2015-05-04 11:36:18 -07:00
|
|
|
public AvatarImageView(Context context) {
|
|
|
|
super(context);
|
2018-09-25 00:13:16 -07:00
|
|
|
initialize(context, null);
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public AvatarImageView(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
2018-09-25 00:13:16 -07:00
|
|
|
initialize(context, attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initialize(@NonNull Context context, @Nullable AttributeSet attrs) {
|
2015-05-15 17:14:20 -07:00
|
|
|
setScaleType(ScaleType.CENTER_CROP);
|
2015-06-29 15:33:36 -07:00
|
|
|
|
|
|
|
if (attrs != null) {
|
|
|
|
TypedArray typedArray = context.getTheme().obtainStyledAttributes(attrs, R.styleable.AvatarImageView, 0, 0);
|
|
|
|
inverted = typedArray.getBoolean(0, false);
|
|
|
|
typedArray.recycle();
|
|
|
|
}
|
2018-09-25 00:13:16 -07:00
|
|
|
|
|
|
|
outlinePaint = ThemeUtil.isDarkTheme(getContext()) ? DARK_THEME_OUTLINE_PAINT : LIGHT_THEME_OUTLINE_PAINT;
|
2019-07-22 12:13:53 +10:00
|
|
|
setOutlineProvider(new ViewOutlineProvider() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void getOutline(View view, Outline outline) {
|
|
|
|
outline.setOval(0, 0, view.getWidth(), view.getHeight());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
setClipToOutline(true);
|
2018-09-25 00:13:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void dispatchDraw(Canvas canvas) {
|
|
|
|
super.dispatchDraw(canvas);
|
|
|
|
|
|
|
|
float cx = canvas.getWidth() / 2;
|
|
|
|
float cy = canvas.getHeight() / 2;
|
|
|
|
float radius = (canvas.getWidth() / 2) - (outlinePaint.getStrokeWidth() / 2);
|
|
|
|
|
|
|
|
canvas.drawCircle(cx, cy, radius, outlinePaint);
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
|
2017-10-04 14:04:04 -07:00
|
|
|
@Override
|
|
|
|
public void setOnClickListener(OnClickListener listener) {
|
|
|
|
this.listener = listener;
|
|
|
|
super.setOnClickListener(listener);
|
|
|
|
}
|
|
|
|
|
2019-07-22 12:13:53 +10:00
|
|
|
@Override
|
|
|
|
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
|
|
|
|
super.onSizeChanged(w, h, oldw, oldh);
|
|
|
|
if (w == 0 || h == 0 || recipient == null) { return; }
|
2019-09-06 14:08:46 +10:00
|
|
|
|
|
|
|
Drawable image;
|
|
|
|
if (recipient.isGroupRecipient()) {
|
|
|
|
Context context = this.getContext();
|
|
|
|
|
|
|
|
String name = Optional.fromNullable(recipient.getName()).or(Optional.fromNullable(TextSecurePreferences.getProfileName(context))).or("");
|
|
|
|
MaterialColor fallbackColor = recipient.getColor();
|
|
|
|
|
|
|
|
if (fallbackColor == ContactColors.UNKNOWN_COLOR && !TextUtils.isEmpty(name)) {
|
|
|
|
fallbackColor = ContactColors.generateFor(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
image = new GeneratedContactPhoto(name, R.drawable.ic_profile_default).asDrawable(context, fallbackColor.toAvatarColor(context));
|
|
|
|
} else {
|
|
|
|
image = new JazzIdenticonDrawable(w, h, recipient.getAddress().serialize());
|
|
|
|
}
|
|
|
|
setImageDrawable(image);
|
2019-07-22 12:13:53 +10:00
|
|
|
}
|
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
public void setAvatar(@NonNull GlideRequests requestManager, @Nullable Recipient recipient, boolean quickContactEnabled) {
|
2019-07-22 12:13:53 +10:00
|
|
|
this.recipient = recipient;
|
|
|
|
/*
|
2017-08-01 08:56:00 -07:00
|
|
|
if (recipient != null) {
|
2017-10-16 13:11:42 -07:00
|
|
|
requestManager.load(recipient.getContactPhoto())
|
|
|
|
.fallback(recipient.getFallbackContactPhotoDrawable(getContext(), inverted))
|
2018-03-19 14:10:21 -07:00
|
|
|
.error(recipient.getFallbackContactPhotoDrawable(getContext(), inverted))
|
2017-10-16 13:11:42 -07:00
|
|
|
.diskCacheStrategy(DiskCacheStrategy.ALL)
|
|
|
|
.circleCrop()
|
|
|
|
.into(this);
|
2017-08-01 08:56:00 -07:00
|
|
|
setAvatarClickHandler(recipient, quickContactEnabled);
|
2015-05-14 08:53:35 -07:00
|
|
|
} else {
|
2018-09-24 23:41:29 -07:00
|
|
|
setImageDrawable(new ResourceContactPhoto(R.drawable.ic_profile_default).asDrawable(getContext(), ContactColors.UNKNOWN_COLOR.toConversationColor(getContext()), inverted));
|
2017-10-04 14:04:04 -07:00
|
|
|
super.setOnClickListener(listener);
|
2015-05-14 08:53:35 -07:00
|
|
|
}
|
2019-07-22 12:13:53 +10:00
|
|
|
*/
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
public void clear(@NonNull GlideRequests glideRequests) {
|
|
|
|
glideRequests.clear(this);
|
|
|
|
}
|
|
|
|
|
2017-08-01 08:56:00 -07:00
|
|
|
private void setAvatarClickHandler(final Recipient recipient, boolean quickContactEnabled) {
|
|
|
|
if (!recipient.isGroupRecipient() && quickContactEnabled) {
|
2017-10-13 09:51:37 -07:00
|
|
|
super.setOnClickListener(v -> {
|
|
|
|
if (recipient.getContactUri() != null) {
|
|
|
|
ContactsContract.QuickContact.showQuickContact(getContext(), AvatarImageView.this, recipient.getContactUri(), ContactsContract.QuickContact.MODE_LARGE, null);
|
|
|
|
} else {
|
2019-03-11 16:40:26 -03:00
|
|
|
getContext().startActivity(RecipientExporter.export(recipient).asAddContactIntent());
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2017-10-04 14:04:04 -07:00
|
|
|
super.setOnClickListener(listener);
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
}
|
2017-10-16 13:11:42 -07:00
|
|
|
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|