2015-05-04 11:36:18 -07:00
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2015-06-29 15:33:36 -07:00
|
|
|
import android.content.res.TypedArray;
|
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;
|
2015-05-04 11:36:18 -07:00
|
|
|
import android.util.AttributeSet;
|
|
|
|
import android.view.View;
|
2017-10-16 13:11:42 -07:00
|
|
|
|
|
|
|
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
2015-05-04 11:36:18 -07:00
|
|
|
|
2015-06-29 15:33:36 -07:00
|
|
|
import org.thoughtcrime.securesms.R;
|
2015-06-23 15:10:50 -07:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ContactColors;
|
2017-10-16 13:11:42 -07:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.GeneratedContactPhoto;
|
2018-09-24 23:41:29 -07:00
|
|
|
import org.thoughtcrime.securesms.contacts.avatars.ResourceContactPhoto;
|
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;
|
|
|
|
|
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
|
|
|
|
2015-06-29 15:33:36 -07:00
|
|
|
private boolean inverted;
|
2017-10-04 14:04:04 -07:00
|
|
|
private OnClickListener listener = null;
|
2015-06-29 15:33:36 -07:00
|
|
|
|
2015-05-04 11:36:18 -07:00
|
|
|
public AvatarImageView(Context context) {
|
|
|
|
super(context);
|
2015-05-15 17:14:20 -07:00
|
|
|
setScaleType(ScaleType.CENTER_CROP);
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public AvatarImageView(Context context, AttributeSet attrs) {
|
|
|
|
super(context, 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();
|
|
|
|
}
|
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);
|
|
|
|
}
|
|
|
|
|
2017-10-16 13:11:42 -07:00
|
|
|
public void setAvatar(@NonNull GlideRequests requestManager, @Nullable Recipient recipient, boolean quickContactEnabled) {
|
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
|
|
|
}
|
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 {
|
|
|
|
final Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
|
|
|
|
if (recipient.getAddress().isEmail()) {
|
|
|
|
intent.putExtra(ContactsContract.Intents.Insert.EMAIL, recipient.getAddress().toEmailString());
|
2017-08-01 08:56:00 -07:00
|
|
|
} else {
|
2017-10-13 09:51:37 -07:00
|
|
|
intent.putExtra(ContactsContract.Intents.Insert.PHONE, recipient.getAddress().toPhoneString());
|
2015-05-04 11:36:18 -07:00
|
|
|
}
|
2017-10-13 09:51:37 -07:00
|
|
|
intent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
|
|
|
|
getContext().startActivity(intent);
|
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
|
|
|
}
|