2012-07-19 21:22:03 +00:00
|
|
|
/**
|
2011-12-20 18:20:44 +00:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2012-07-19 21:22:03 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00: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-19 21:22:03 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00: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;
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.database.Cursor;
|
2015-09-15 22:28:27 +00:00
|
|
|
import android.support.annotation.LayoutRes;
|
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
import android.support.annotation.Nullable;
|
2016-11-03 16:36:45 +00:00
|
|
|
import android.support.annotation.VisibleForTesting;
|
2015-09-15 22:28:27 +00:00
|
|
|
import android.support.v7.widget.RecyclerView;
|
2017-01-20 23:26:17 +00:00
|
|
|
import android.util.Log;
|
2012-07-20 02:23:49 +00:00
|
|
|
import android.view.LayoutInflater;
|
2012-07-19 21:22:03 +00:00
|
|
|
import android.view.View;
|
2015-09-15 22:28:27 +00:00
|
|
|
import android.view.View.OnClickListener;
|
|
|
|
import android.view.View.OnLongClickListener;
|
2012-07-19 21:22:03 +00:00
|
|
|
import android.view.ViewGroup;
|
2017-01-24 00:44:38 +00:00
|
|
|
import android.widget.TextView;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2015-09-15 22:28:27 +00:00
|
|
|
import org.thoughtcrime.securesms.database.CursorRecyclerViewAdapter;
|
2011-12-20 18:20:44 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsSmsColumns;
|
2012-10-28 23:04:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsSmsDatabase;
|
2011-12-20 18:20:44 +00:00
|
|
|
import org.thoughtcrime.securesms.database.SmsDatabase;
|
2012-10-28 23:04:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.MessageRecord;
|
2017-01-20 23:26:17 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.MmsMessageRecord;
|
2015-10-21 22:32:29 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
2017-01-24 00:44:38 +00:00
|
|
|
import org.thoughtcrime.securesms.util.DateUtils;
|
2013-05-06 19:22:03 +00:00
|
|
|
import org.thoughtcrime.securesms.util.LRUCache;
|
2017-01-24 00:44:38 +00:00
|
|
|
import org.thoughtcrime.securesms.util.StickyHeaderDecoration;
|
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
2016-08-16 03:23:56 +00:00
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
2017-01-24 00:44:38 +00:00
|
|
|
import org.thoughtcrime.securesms.ConversationAdapter.HeaderViewHolder;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2013-05-06 19:22:03 +00:00
|
|
|
import java.lang.ref.SoftReference;
|
2017-01-24 00:44:38 +00:00
|
|
|
import java.util.Calendar;
|
2013-05-06 19:22:03 +00:00
|
|
|
import java.util.Collections;
|
2017-01-24 00:44:38 +00:00
|
|
|
import java.util.Date;
|
2014-12-14 02:10:59 +00:00
|
|
|
import java.util.HashSet;
|
2015-03-19 20:08:48 +00:00
|
|
|
import java.util.Locale;
|
2013-05-06 19:22:03 +00:00
|
|
|
import java.util.Map;
|
2014-12-14 02:10:59 +00:00
|
|
|
import java.util.Set;
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
/**
|
|
|
|
* A cursor adapter for a conversation thread. Ultimately
|
|
|
|
* used by ComposeMessageActivity to display a conversation
|
|
|
|
* thread in a ListActivity.
|
2012-07-19 21:22:03 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2015-09-15 22:28:27 +00:00
|
|
|
public class ConversationAdapter <V extends View & BindableConversationItem>
|
|
|
|
extends CursorRecyclerViewAdapter<ConversationAdapter.ViewHolder>
|
2017-01-24 00:44:38 +00:00
|
|
|
implements StickyHeaderDecoration.StickyHeaderAdapter<HeaderViewHolder>
|
2015-09-15 22:28:27 +00:00
|
|
|
{
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private static final int MAX_CACHE_SIZE = 40;
|
2017-01-20 23:26:17 +00:00
|
|
|
private static final String TAG = ConversationAdapter.class.getName();
|
2013-05-06 19:22:03 +00:00
|
|
|
private final Map<String,SoftReference<MessageRecord>> messageRecordCache =
|
|
|
|
Collections.synchronizedMap(new LRUCache<String, SoftReference<MessageRecord>>(MAX_CACHE_SIZE));
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2017-01-20 17:30:08 +00:00
|
|
|
private static final int MESSAGE_TYPE_OUTGOING = 0;
|
|
|
|
private static final int MESSAGE_TYPE_INCOMING = 1;
|
|
|
|
private static final int MESSAGE_TYPE_UPDATE = 2;
|
|
|
|
private static final int MESSAGE_TYPE_AUDIO_OUTGOING = 3;
|
|
|
|
private static final int MESSAGE_TYPE_AUDIO_INCOMING = 4;
|
|
|
|
private static final int MESSAGE_TYPE_THUMBNAIL_OUTGOING = 5;
|
|
|
|
private static final int MESSAGE_TYPE_THUMBNAIL_INCOMING = 6;
|
2014-02-17 01:44:51 +00:00
|
|
|
|
2014-12-14 02:10:59 +00:00
|
|
|
private final Set<MessageRecord> batchSelected = Collections.synchronizedSet(new HashSet<MessageRecord>());
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
private final @Nullable ItemClickListener clickListener;
|
|
|
|
private final @NonNull MasterSecret masterSecret;
|
|
|
|
private final @NonNull Locale locale;
|
|
|
|
private final @NonNull Recipients recipients;
|
|
|
|
private final @NonNull MmsSmsDatabase db;
|
|
|
|
private final @NonNull LayoutInflater inflater;
|
2017-01-24 00:44:38 +00:00
|
|
|
private final @NonNull Calendar calendar;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
protected static class ViewHolder extends RecyclerView.ViewHolder {
|
|
|
|
public <V extends View & BindableConversationItem> ViewHolder(final @NonNull V itemView) {
|
|
|
|
super(itemView);
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public <V extends View & BindableConversationItem> V getView() {
|
|
|
|
return (V)itemView;
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2017-01-24 00:44:38 +00:00
|
|
|
|
|
|
|
protected static class HeaderViewHolder extends RecyclerView.ViewHolder {
|
2017-01-26 00:38:36 +00:00
|
|
|
protected TextView textView;
|
2017-01-24 00:44:38 +00:00
|
|
|
|
|
|
|
public HeaderViewHolder(View itemView) {
|
|
|
|
super(itemView);
|
|
|
|
textView = ViewUtil.findById(itemView, R.id.text);
|
|
|
|
}
|
|
|
|
|
2017-01-26 00:38:36 +00:00
|
|
|
public HeaderViewHolder(TextView textView) {
|
|
|
|
super(textView);
|
|
|
|
this.textView = textView;
|
|
|
|
}
|
|
|
|
|
2017-01-24 00:44:38 +00:00
|
|
|
public void setText(CharSequence text) {
|
|
|
|
textView.setText(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public interface ItemClickListener {
|
2016-08-16 03:23:56 +00:00
|
|
|
void onItemClick(MessageRecord item);
|
|
|
|
void onItemLongClick(MessageRecord item);
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@SuppressWarnings("ConstantConditions")
|
|
|
|
@VisibleForTesting
|
|
|
|
ConversationAdapter(Context context, Cursor cursor) {
|
|
|
|
super(context, cursor);
|
2017-01-20 03:06:46 +00:00
|
|
|
this.masterSecret = null;
|
|
|
|
this.locale = null;
|
|
|
|
this.clickListener = null;
|
|
|
|
this.recipients = null;
|
|
|
|
this.inflater = null;
|
|
|
|
this.db = null;
|
2017-01-24 00:44:38 +00:00
|
|
|
this.calendar = null;
|
2015-11-13 21:20:16 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public ConversationAdapter(@NonNull Context context,
|
|
|
|
@NonNull MasterSecret masterSecret,
|
|
|
|
@NonNull Locale locale,
|
|
|
|
@Nullable ItemClickListener clickListener,
|
|
|
|
@Nullable Cursor cursor,
|
2015-10-21 22:32:29 +00:00
|
|
|
@NonNull Recipients recipients)
|
2015-09-15 22:28:27 +00:00
|
|
|
{
|
|
|
|
super(context, cursor);
|
2017-01-20 03:06:46 +00:00
|
|
|
this.masterSecret = masterSecret;
|
|
|
|
this.locale = locale;
|
|
|
|
this.clickListener = clickListener;
|
|
|
|
this.recipients = recipients;
|
|
|
|
this.inflater = LayoutInflater.from(context);
|
|
|
|
this.db = DatabaseFactory.getMmsSmsDatabase(context);
|
2017-01-24 00:44:38 +00:00
|
|
|
this.calendar = Calendar.getInstance();
|
2017-01-20 03:06:46 +00:00
|
|
|
|
|
|
|
setHasStableIds(true);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
2014-09-24 20:54:56 +00:00
|
|
|
@Override
|
|
|
|
public void changeCursor(Cursor cursor) {
|
|
|
|
messageRecordCache.clear();
|
|
|
|
super.changeCursor(cursor);
|
|
|
|
}
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public void onBindItemViewHolder(ViewHolder viewHolder, @NonNull Cursor cursor) {
|
2017-01-24 00:44:38 +00:00
|
|
|
long start = System.currentTimeMillis();
|
|
|
|
MessageRecord messageRecord = getMessageRecord(cursor);
|
2015-09-15 22:28:27 +00:00
|
|
|
|
2015-10-21 22:32:29 +00:00
|
|
|
viewHolder.getView().bind(masterSecret, messageRecord, locale, batchSelected, recipients);
|
2017-01-20 23:26:17 +00:00
|
|
|
Log.w(TAG, "Bind time: " + (System.currentTimeMillis() - start));
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public ViewHolder onCreateItemViewHolder(ViewGroup parent, int viewType) {
|
2017-01-20 23:26:17 +00:00
|
|
|
long start = System.currentTimeMillis();
|
2015-09-15 22:28:27 +00:00
|
|
|
final V itemView = ViewUtil.inflate(inflater, parent, getLayoutForViewType(viewType));
|
2016-08-16 03:23:56 +00:00
|
|
|
itemView.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
if (clickListener != null) {
|
|
|
|
clickListener.onItemClick(itemView.getMessageRecord());
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
2016-08-16 03:23:56 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
itemView.setOnLongClickListener(new OnLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View view) {
|
|
|
|
if (clickListener != null) {
|
|
|
|
clickListener.onItemLongClick(itemView.getMessageRecord());
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
2016-08-16 03:23:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2017-01-20 23:26:17 +00:00
|
|
|
Log.w(TAG, "Inflate time: " + (System.currentTimeMillis() - start));
|
2015-09-15 22:28:27 +00:00
|
|
|
return new ViewHolder(itemView);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public void onItemViewRecycled(ViewHolder holder) {
|
2015-09-15 22:28:27 +00:00
|
|
|
holder.getView().unbind();
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
private @LayoutRes int getLayoutForViewType(int viewType) {
|
|
|
|
switch (viewType) {
|
2017-01-20 17:11:40 +00:00
|
|
|
case MESSAGE_TYPE_AUDIO_OUTGOING:
|
2017-01-20 17:30:08 +00:00
|
|
|
case MESSAGE_TYPE_THUMBNAIL_OUTGOING:
|
2017-01-20 17:11:40 +00:00
|
|
|
case MESSAGE_TYPE_OUTGOING: return R.layout.conversation_item_sent;
|
|
|
|
case MESSAGE_TYPE_AUDIO_INCOMING:
|
2017-01-20 17:30:08 +00:00
|
|
|
case MESSAGE_TYPE_THUMBNAIL_INCOMING:
|
2017-01-20 17:11:40 +00:00
|
|
|
case MESSAGE_TYPE_INCOMING: return R.layout.conversation_item_received;
|
|
|
|
case MESSAGE_TYPE_UPDATE: return R.layout.conversation_item_update;
|
|
|
|
default: throw new IllegalArgumentException("unsupported item view type given to ConversationAdapter");
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
@Override
|
|
|
|
public int getItemViewType(@NonNull Cursor cursor) {
|
2017-01-24 00:44:38 +00:00
|
|
|
MessageRecord messageRecord = getMessageRecord(cursor);
|
2014-02-20 05:06:54 +00:00
|
|
|
|
2017-01-24 00:44:38 +00:00
|
|
|
if (messageRecord.isGroupAction() || messageRecord.isCallLog() || messageRecord.isJoined() ||
|
2017-01-20 17:11:40 +00:00
|
|
|
messageRecord.isExpirationTimerUpdate() || messageRecord.isEndSession() || messageRecord.isIdentityUpdate()) {
|
2015-10-27 19:18:02 +00:00
|
|
|
return MESSAGE_TYPE_UPDATE;
|
2017-01-20 17:11:40 +00:00
|
|
|
} else if (hasAudio(messageRecord)) {
|
|
|
|
if (messageRecord.isOutgoing()) return MESSAGE_TYPE_AUDIO_OUTGOING;
|
|
|
|
else return MESSAGE_TYPE_AUDIO_INCOMING;
|
2017-01-20 17:30:08 +00:00
|
|
|
} else if (hasThumbnail(messageRecord)) {
|
|
|
|
if (messageRecord.isOutgoing()) return MESSAGE_TYPE_THUMBNAIL_OUTGOING;
|
|
|
|
else return MESSAGE_TYPE_THUMBNAIL_INCOMING;
|
2015-10-27 19:18:02 +00:00
|
|
|
} else if (messageRecord.isOutgoing()) {
|
|
|
|
return MESSAGE_TYPE_OUTGOING;
|
|
|
|
} else {
|
|
|
|
return MESSAGE_TYPE_INCOMING;
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public long getItemId(@NonNull Cursor cursor) {
|
2017-01-20 03:06:46 +00:00
|
|
|
return cursor.getLong(cursor.getColumnIndexOrThrow(MmsSmsColumns.UNIQUE_ROW_ID));
|
2015-11-13 21:20:16 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 00:44:38 +00:00
|
|
|
private MessageRecord getMessageRecord(Cursor cursor) {
|
|
|
|
long messageId = cursor.getLong(cursor.getColumnIndexOrThrow(MmsSmsColumns.ID));
|
|
|
|
String type = cursor.getString(cursor.getColumnIndexOrThrow(MmsSmsDatabase.TRANSPORT));
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
final SoftReference<MessageRecord> reference = messageRecordCache.get(type + messageId);
|
2013-05-06 19:22:03 +00:00
|
|
|
if (reference != null) {
|
2015-09-15 22:28:27 +00:00
|
|
|
final MessageRecord record = reference.get();
|
|
|
|
if (record != null) return record;
|
2013-05-06 19:22:03 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
final MessageRecord messageRecord = db.readerFor(cursor, masterSecret).getCurrent();
|
2015-07-20 22:05:56 +00:00
|
|
|
messageRecordCache.put(type + messageId, new SoftReference<>(messageRecord));
|
2013-05-06 19:22:03 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
return messageRecord;
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public void close() {
|
2015-09-15 22:28:27 +00:00
|
|
|
getCursor().close();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public void toggleSelection(MessageRecord messageRecord) {
|
|
|
|
if (!batchSelected.remove(messageRecord)) {
|
2014-12-14 02:10:59 +00:00
|
|
|
batchSelected.add(messageRecord);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public void clearSelection() {
|
|
|
|
batchSelected.clear();
|
2014-12-14 02:10:59 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public Set<MessageRecord> getSelectedItems() {
|
|
|
|
return Collections.unmodifiableSet(new HashSet<>(batchSelected));
|
2013-04-26 18:23:43 +00:00
|
|
|
}
|
2017-01-20 17:11:40 +00:00
|
|
|
|
|
|
|
private boolean hasAudio(MessageRecord messageRecord) {
|
2017-01-20 23:26:17 +00:00
|
|
|
return messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getSlideDeck().getAudioSlide() != null;
|
2017-01-20 17:11:40 +00:00
|
|
|
}
|
2017-01-20 17:30:08 +00:00
|
|
|
|
|
|
|
private boolean hasThumbnail(MessageRecord messageRecord) {
|
2017-01-20 23:26:17 +00:00
|
|
|
return messageRecord.isMms() && ((MmsMessageRecord)messageRecord).getSlideDeck().getThumbnailSlide() != null;
|
2017-01-20 17:30:08 +00:00
|
|
|
}
|
2017-01-24 00:44:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getHeaderId(int position) {
|
2017-01-26 02:00:26 +00:00
|
|
|
if (!isActiveCursor()) return -1;
|
|
|
|
if (isHeaderPosition(position)) return -1;
|
|
|
|
if (isFooterPosition(position)) return -1;
|
|
|
|
if (position >= getItemCount()) return -1;
|
2017-01-29 21:02:59 +00:00
|
|
|
if (position < 0) return -1;
|
2017-01-26 00:38:36 +00:00
|
|
|
|
2017-01-24 00:44:38 +00:00
|
|
|
Cursor cursor = getCursorAtPositionOrThrow(position);
|
|
|
|
MessageRecord record = getMessageRecord(cursor);
|
|
|
|
|
|
|
|
calendar.setTime(new Date(record.getDateSent()));
|
|
|
|
return Util.hashCode(calendar.get(Calendar.YEAR), calendar.get(Calendar.DAY_OF_YEAR));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public HeaderViewHolder onCreateHeaderViewHolder(ViewGroup parent) {
|
|
|
|
return new HeaderViewHolder(LayoutInflater.from(getContext()).inflate(R.layout.conversation_item_header, parent, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindHeaderViewHolder(HeaderViewHolder viewHolder, int position) {
|
|
|
|
Cursor cursor = getCursorAtPositionOrThrow(position);
|
|
|
|
viewHolder.setText(DateUtils.getRelativeDate(getContext(), locale, getMessageRecord(cursor).getDateReceived()));
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2017-01-24 00:44:38 +00:00
|
|
|
|