session-android/src/org/thoughtcrime/securesms/ConversationListItem.java

165 lines
5.7 KiB
Java
Raw Normal View History

2012-07-17 04:56:10 +02:00
/**
2011-12-20 19:20:44 +01:00
* Copyright (C) 2011 Whisper Systems
2012-07-17 04:56:10 +02:00
*
2011-12-20 19:20:44 +01:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2012-07-17 04:56:10 +02:00
*
2011-12-20 19:20:44 +01:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.thoughtcrime.securesms;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Typeface;
import android.os.Handler;
2011-12-20 19:20:44 +01:00
import android.util.AttributeSet;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.TextView;
import org.thoughtcrime.securesms.components.AvatarImageView;
import org.thoughtcrime.securesms.components.FromTextView;
import org.thoughtcrime.securesms.database.model.ThreadRecord;
import org.thoughtcrime.securesms.recipients.Recipient;
2012-07-17 04:56:10 +02:00
import org.thoughtcrime.securesms.recipients.Recipients;
import org.thoughtcrime.securesms.util.DateUtils;
import org.thoughtcrime.securesms.util.Emoji;
2012-07-17 04:56:10 +02:00
import java.util.Locale;
2012-07-17 04:56:10 +02:00
import java.util.Set;
import static org.thoughtcrime.securesms.util.SpanUtil.color;
2012-07-17 04:56:10 +02:00
2011-12-20 19:20:44 +01:00
/**
* A view that displays the element in a list of multiple conversation threads.
* Used by SecureSMS's ListActivity via a ConversationListAdapter.
*
* @author Moxie Marlinspike
*/
public class ConversationListItem extends RelativeLayout
implements Recipient.RecipientModifiedListener
{
private final static String TAG = ConversationListItem.class.getSimpleName();
2011-12-20 19:20:44 +01:00
private final static Typeface BOLD_TYPEFACE = Typeface.create("sans-serif", Typeface.BOLD);
private final static Typeface LIGHT_TYPEFACE = Typeface.create("sans-serif-light", Typeface.NORMAL);
private Context context;
private Set<Long> selectedThreads;
private Recipients recipients;
private long threadId;
private TextView subjectView;
private FromTextView fromView;
private TextView dateView;
private boolean read;
private AvatarImageView contactPhotoImage;
2012-07-17 04:56:10 +02:00
private final Handler handler = new Handler();
2013-04-26 03:59:49 +02:00
private int distributionType;
public ConversationListItem(Context context) {
2011-12-20 19:20:44 +01:00
super(context);
this.context = context;
}
2011-12-20 19:20:44 +01:00
public ConversationListItem(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
}
2012-07-17 04:56:10 +02:00
@Override
protected void onFinishInflate() {
this.subjectView = (TextView) findViewById(R.id.subject);
this.fromView = (FromTextView) findViewById(R.id.from);
this.dateView = (TextView) findViewById(R.id.date);
this.contactPhotoImage = (AvatarImageView) findViewById(R.id.contact_photo_image);
initializeContactWidgetVisibility();
2011-12-20 19:20:44 +01:00
}
2012-07-17 04:56:10 +02:00
public void set(ThreadRecord thread, Locale locale, Set<Long> selectedThreads, boolean batchMode) {
2013-04-26 03:59:49 +02:00
this.selectedThreads = selectedThreads;
this.recipients = thread.getRecipients();
this.threadId = thread.getThreadId();
this.read = thread.isRead();
this.distributionType = thread.getDistributionType();
2011-12-20 19:20:44 +01:00
this.recipients.addListener(this);
this.fromView.setText(recipients, read);
this.subjectView.setText(Emoji.getInstance(context).emojify(thread.getDisplayBody(),
Emoji.EMOJI_SMALL,
new Emoji.InvalidatingPageLoadedListener(subjectView)),
TextView.BufferType.SPANNABLE);
this.subjectView.setTypeface(read ? LIGHT_TYPEFACE : BOLD_TYPEFACE);
if (thread.getDate() > 0) {
CharSequence date = DateUtils.getBriefRelativeTimeSpanString(context, locale, thread.getDate());
dateView.setText(read ? date : color(getResources().getColor(R.color.textsecure_primary), date));
dateView.setTypeface(read ? LIGHT_TYPEFACE : BOLD_TYPEFACE);
}
2011-12-20 19:20:44 +01:00
setBackground(read, batchMode);
this.contactPhotoImage.setAvatar(recipients.getPrimaryRecipient(), true);
}
public void unbind() {
2013-06-25 22:20:29 +02:00
if (this.recipients != null)
this.recipients.removeListener(this);
2011-12-20 19:20:44 +01:00
}
2012-07-17 04:56:10 +02:00
private void initializeContactWidgetVisibility() {
contactPhotoImage.setVisibility(View.VISIBLE);
}
private void setBackground(boolean read, boolean batch) {
int[] attributes = new int[]{R.attr.conversation_list_item_background_selected,
R.attr.conversation_list_item_background_read,
R.attr.conversation_list_item_background_unread};
TypedArray drawables = context.obtainStyledAttributes(attributes);
if (batch && selectedThreads.contains(threadId)) {
setBackgroundDrawable(drawables.getDrawable(0));
} else if (read) {
setBackgroundDrawable(drawables.getDrawable(1));
} else {
setBackgroundDrawable(drawables.getDrawable(2));
}
drawables.recycle();
}
2011-12-20 19:20:44 +01:00
public Recipients getRecipients() {
return recipients;
}
2012-07-17 04:56:10 +02:00
2011-12-20 19:20:44 +01:00
public long getThreadId() {
return threadId;
}
2012-07-17 04:56:10 +02:00
2013-04-26 03:59:49 +02:00
public int getDistributionType() {
return distributionType;
}
@Override
public void onModified(Recipient recipient) {
handler.post(new Runnable() {
@Override
public void run() {
fromView.setText(recipients, read);
contactPhotoImage.setAvatar(recipients.getPrimaryRecipient(), true);
}
});
}
2011-12-20 19:20:44 +01:00
}