Display a generated avatar icon rather than a single default.
If the contact doesn't have an image, render a color-coded background and the first letter of the contact's name. 1) Don't display anything during recipient resolution. 2) Display a # icon in material gray for recipients with no name. 3) Display a material group icon in material gray for groups with no avatar icon set. Closes #3104 // FREEBIEpull/1/head
parent
356d9949b7
commit
41cad291f9
@ -0,0 +1,49 @@
|
||||
package org.thoughtcrime.securesms.components;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.provider.ContactsContract;
|
||||
import android.util.AttributeSet;
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
|
||||
import org.thoughtcrime.securesms.recipients.Recipient;
|
||||
|
||||
public class AvatarImageView extends ImageView {
|
||||
|
||||
public AvatarImageView(Context context) {
|
||||
super(context);
|
||||
setScaleType(ScaleType.CENTER_INSIDE);
|
||||
}
|
||||
|
||||
public AvatarImageView(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
setScaleType(ScaleType.CENTER_INSIDE);
|
||||
}
|
||||
|
||||
public void setAvatar(Recipient recipient, boolean quickContactEnabled) {
|
||||
setImageDrawable(recipient.getContactPhoto());
|
||||
setAvatarClickHandler(recipient, quickContactEnabled);
|
||||
}
|
||||
|
||||
private void setAvatarClickHandler(final Recipient recipient, boolean quickContactEnabled) {
|
||||
if (!recipient.isGroupRecipient() && quickContactEnabled) {
|
||||
setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View 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);
|
||||
intent.putExtra(ContactsContract.Intents.Insert.PHONE, recipient.getNumber());
|
||||
intent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
|
||||
getContext().startActivity(intent);
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
setOnClickListener(null);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,69 @@
|
||||
package org.thoughtcrime.securesms.components;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.TypedArray;
|
||||
import android.graphics.Typeface;
|
||||
import android.text.Spannable;
|
||||
import android.text.SpannableStringBuilder;
|
||||
import android.text.TextUtils;
|
||||
import android.text.style.StyleSpan;
|
||||
import android.util.AttributeSet;
|
||||
import android.widget.TextView;
|
||||
|
||||
import org.thoughtcrime.securesms.R;
|
||||
import org.thoughtcrime.securesms.recipients.Recipient;
|
||||
import org.thoughtcrime.securesms.recipients.Recipients;
|
||||
|
||||
public class FromTextView extends TextView {
|
||||
|
||||
public FromTextView(Context context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
public FromTextView(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
}
|
||||
|
||||
public void setText(Recipient recipient) {
|
||||
setText(new Recipients(recipient));
|
||||
}
|
||||
|
||||
public void setText(Recipients recipients) {
|
||||
setText(recipients, true);
|
||||
}
|
||||
|
||||
public void setText(Recipients recipients, boolean read) {
|
||||
int attributes[] = new int[]{R.attr.conversation_list_item_count_color};
|
||||
TypedArray colors = getContext().obtainStyledAttributes(attributes);
|
||||
boolean isUnnamedGroup = recipients.isGroupRecipient() && TextUtils.isEmpty(recipients.getPrimaryRecipient().getName());
|
||||
|
||||
String fromString;
|
||||
|
||||
if (isUnnamedGroup) {
|
||||
fromString = getContext().getString(R.string.ConversationActivity_unnamed_group);
|
||||
} else {
|
||||
fromString = recipients.toShortString();
|
||||
}
|
||||
|
||||
int typeface;
|
||||
|
||||
if (isUnnamedGroup) {
|
||||
if (!read) typeface = Typeface.BOLD_ITALIC;
|
||||
else typeface = Typeface.ITALIC;
|
||||
} else if (!read) {
|
||||
typeface = Typeface.BOLD;
|
||||
} else {
|
||||
typeface = Typeface.NORMAL;
|
||||
}
|
||||
|
||||
SpannableStringBuilder builder = new SpannableStringBuilder(fromString);
|
||||
builder.setSpan(new StyleSpan(typeface), 0, builder.length(),
|
||||
Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
|
||||
|
||||
colors.recycle();
|
||||
|
||||
setText(builder);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -1,120 +0,0 @@
|
||||
package org.thoughtcrime.securesms.recipients;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.Resources;
|
||||
import android.content.res.TypedArray;
|
||||
import android.graphics.Bitmap;
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Color;
|
||||
import android.graphics.Paint;
|
||||
import android.graphics.Rect;
|
||||
import android.graphics.Typeface;
|
||||
|
||||
import org.thoughtcrime.securesms.R;
|
||||
import org.thoughtcrime.securesms.contacts.ContactPhotoFactory;
|
||||
import org.thoughtcrime.securesms.util.BitmapUtil;
|
||||
|
||||
/**
|
||||
* Utility class to generate avatars for contacts who don't have a contact
|
||||
* picture set.
|
||||
*
|
||||
* @author Lukas Barth
|
||||
*/
|
||||
public class AvatarGenerator {
|
||||
|
||||
public static Bitmap generateFor(Context context, Recipient recipient) {
|
||||
if ((recipient == null) || (recipient.getName() == null)) {
|
||||
return ContactPhotoFactory.getDefaultContactPhoto(context);
|
||||
}
|
||||
|
||||
final int size = ContactPhotoFactory.getDefaultContactPhoto(context).getHeight();
|
||||
final Bitmap output = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
|
||||
final Canvas canvas = new Canvas(output);
|
||||
final int color = getColorForRecipient(recipient, context);
|
||||
final Paint paint = new Paint();
|
||||
final int innerRectOffset = (int) Math.ceil((size - Math.sqrt(2) * (size / 2)) / 2);
|
||||
final Rect innerRect = new Rect(innerRectOffset, innerRectOffset,
|
||||
size - innerRectOffset, size - innerRectOffset);
|
||||
|
||||
paint.setAntiAlias(true);
|
||||
paint.setColor(color);
|
||||
canvas.drawCircle(size / 2, size / 2, size / 2, paint);
|
||||
|
||||
paint.setColor(Color.WHITE);
|
||||
Typeface robotoLightTypeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Light.ttf");
|
||||
paint.setTypeface(robotoLightTypeface);
|
||||
setFontSize(innerRect, paint);
|
||||
|
||||
paint.setTextAlign(Paint.Align.CENTER);
|
||||
|
||||
int initialIndex = 0;
|
||||
char[] contactName = recipient.getName().toCharArray();
|
||||
|
||||
if (contactName.length == 0) {
|
||||
contactName = new char[]{'?'};
|
||||
initialIndex = 0;
|
||||
} else {
|
||||
while ((! Character.isLetter(contactName[initialIndex]))) {
|
||||
initialIndex ++;
|
||||
|
||||
if (initialIndex >= contactName.length) {
|
||||
contactName[0] = '?';
|
||||
initialIndex = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rect textBounds = new Rect();
|
||||
paint.getTextBounds(contactName, initialIndex, 1, textBounds);
|
||||
|
||||
int bottomOffset = (innerRect.height() - textBounds.height()) / 2;
|
||||
|
||||
canvas.drawText(Character.toString(contactName[initialIndex]),
|
||||
innerRect.centerX(), innerRect.bottom - bottomOffset, paint);
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
|
||||
private static int getColorForRecipient(Recipient recipient, Context context) {
|
||||
if ((recipient == null) || (recipient.getName() == null)) {
|
||||
return Color.WHITE;
|
||||
}
|
||||
|
||||
long nameHash = recipient.getName().hashCode();
|
||||
Resources res = context.getResources();
|
||||
TypedArray colorArray = res.obtainTypedArray(R.array.avatar_colors);
|
||||
int index = Math.abs((int) (nameHash % colorArray.length()));
|
||||
int color = colorArray.getColor(index, Color.BLACK);
|
||||
|
||||
colorArray.recycle();
|
||||
|
||||
return color;
|
||||
}
|
||||
|
||||
private static int setFontSize(Rect textRect, Paint paint) {
|
||||
boolean overflow = false;
|
||||
int currentSize = 0;
|
||||
|
||||
while (!overflow) {
|
||||
currentSize++;
|
||||
paint.setTextSize(currentSize);
|
||||
|
||||
Paint.FontMetricsInt fontMetrics = paint.getFontMetricsInt();
|
||||
int textHeight = fontMetrics.descent - fontMetrics.ascent;
|
||||
|
||||
if (textHeight > textRect.height()) {
|
||||
overflow = true;
|
||||
}
|
||||
}
|
||||
|
||||
currentSize--;
|
||||
|
||||
currentSize *= 1.2;
|
||||
|
||||
paint.setTextSize(currentSize);
|
||||
|
||||
return currentSize;
|
||||
}
|
||||
}
|
@ -1,83 +0,0 @@
|
||||
package org.thoughtcrime.securesms.util;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.res.TypedArray;
|
||||
import android.graphics.Typeface;
|
||||
import android.net.Uri;
|
||||
import android.provider.Contacts.Intents;
|
||||
import android.provider.ContactsContract.QuickContact;
|
||||
import android.text.Spannable;
|
||||
import android.text.SpannableStringBuilder;
|
||||
import android.text.TextUtils;
|
||||
import android.text.style.StyleSpan;
|
||||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
|
||||
import org.thoughtcrime.securesms.R;
|
||||
import org.thoughtcrime.securesms.recipients.Recipient;
|
||||
import org.thoughtcrime.securesms.recipients.Recipients;
|
||||
|
||||
public class RecipientViewUtil {
|
||||
public static CharSequence formatFrom(Context context, Recipient recipient) {
|
||||
return formatFrom(context, new Recipients(recipient));
|
||||
}
|
||||
|
||||
public static CharSequence formatFrom(Context context, Recipients from) {
|
||||
return formatFrom(context, from, true);
|
||||
}
|
||||
|
||||
public static CharSequence formatFrom(Context context, Recipients from, boolean read) {
|
||||
int attributes[] = new int[] {R.attr.conversation_list_item_count_color};
|
||||
TypedArray colors = context.obtainStyledAttributes(attributes);
|
||||
|
||||
final String fromString;
|
||||
final boolean isUnnamedGroup = from.isGroupRecipient() && TextUtils.isEmpty(from.getPrimaryRecipient().getName());
|
||||
if (isUnnamedGroup) {
|
||||
fromString = context.getString(R.string.ConversationActivity_unnamed_group);
|
||||
} else {
|
||||
fromString = from.toShortString();
|
||||
}
|
||||
SpannableStringBuilder builder = new SpannableStringBuilder(fromString);
|
||||
|
||||
final int typeface;
|
||||
if (isUnnamedGroup) {
|
||||
if (!read) typeface = Typeface.BOLD_ITALIC;
|
||||
else typeface = Typeface.ITALIC;
|
||||
} else if (!read) {
|
||||
typeface = Typeface.BOLD;
|
||||
} else {
|
||||
typeface = Typeface.NORMAL;
|
||||
}
|
||||
|
||||
builder.setSpan(new StyleSpan(typeface), 0, builder.length(),
|
||||
Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
|
||||
|
||||
|
||||
colors.recycle();
|
||||
return builder;
|
||||
}
|
||||
|
||||
public static void setContactPhoto(final Context context, final ImageView imageView, final Recipient recipient, boolean showQuickContact) {
|
||||
if (recipient == null) return;
|
||||
|
||||
imageView.setImageBitmap(recipient.getContactPhoto());
|
||||
|
||||
if (!recipient.isGroupRecipient() && showQuickContact) {
|
||||
imageView.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
if (recipient.getContactUri() != null) {
|
||||
QuickContact.showQuickContact(context, imageView, recipient.getContactUri(), QuickContact.MODE_LARGE, null);
|
||||
} else {
|
||||
Intent intent = new Intent(Intents.SHOW_OR_CREATE_CONTACT, Uri.fromParts("tel", recipient.getNumber(), null));
|
||||
context.startActivity(intent);
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
imageView.setOnClickListener(null);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue