2014-08-15 11:18:15 +00:00
|
|
|
package eu.siacs.conversations.ui.adapter;
|
|
|
|
|
2015-01-11 15:22:29 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.Typeface;
|
2015-01-12 15:09:39 +00:00
|
|
|
import android.util.Pair;
|
2015-01-11 15:22:29 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.ArrayAdapter;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
2014-08-15 11:18:15 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-10-15 17:32:12 +00:00
|
|
|
import eu.siacs.conversations.entities.Downloadable;
|
2014-11-14 16:39:03 +00:00
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
2014-08-15 11:18:15 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.ui.ConversationActivity;
|
2014-09-02 13:51:20 +00:00
|
|
|
import eu.siacs.conversations.ui.XmppActivity;
|
2014-08-15 11:18:15 +00:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
|
|
|
|
|
|
|
public class ConversationAdapter extends ArrayAdapter<Conversation> {
|
|
|
|
|
2014-09-02 13:51:20 +00:00
|
|
|
private XmppActivity activity;
|
2014-08-15 11:18:15 +00:00
|
|
|
|
2014-09-02 13:51:20 +00:00
|
|
|
public ConversationAdapter(XmppActivity activity,
|
2014-08-15 11:18:15 +00:00
|
|
|
List<Conversation> conversations) {
|
|
|
|
super(activity, 0, conversations);
|
|
|
|
this.activity = activity;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int position, View view, ViewGroup parent) {
|
|
|
|
if (view == null) {
|
2015-01-12 15:09:39 +00:00
|
|
|
LayoutInflater inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
view = inflater.inflate(R.layout.conversation_list_row,parent, false);
|
2014-08-15 11:18:15 +00:00
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
Conversation conversation = getItem(position);
|
2014-09-02 13:51:20 +00:00
|
|
|
if (this.activity instanceof ConversationActivity) {
|
|
|
|
ConversationActivity activity = (ConversationActivity) this.activity;
|
2014-10-03 13:00:29 +00:00
|
|
|
if (!activity.isConversationsOverviewHideable()) {
|
2014-10-15 17:32:12 +00:00
|
|
|
if (conversation == activity.getSelectedConversation()) {
|
2014-10-05 22:33:52 +00:00
|
|
|
view.setBackgroundColor(activity
|
|
|
|
.getSecondaryBackgroundColor());
|
2014-09-02 13:51:20 +00:00
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(Color.TRANSPARENT);
|
|
|
|
}
|
2014-08-15 11:18:15 +00:00
|
|
|
} else {
|
|
|
|
view.setBackgroundColor(Color.TRANSPARENT);
|
|
|
|
}
|
|
|
|
}
|
2015-01-12 15:09:39 +00:00
|
|
|
TextView convName = (TextView) view.findViewById(R.id.conversation_name);
|
|
|
|
if (conversation.getMode() == Conversation.MODE_SINGLE || activity.useSubjectToIdentifyConference()) {
|
2014-10-15 17:32:12 +00:00
|
|
|
convName.setText(conversation.getName());
|
2014-09-22 11:23:35 +00:00
|
|
|
} else {
|
2014-12-21 20:43:58 +00:00
|
|
|
convName.setText(conversation.getJid().toBareJid().toString());
|
2014-09-22 11:23:35 +00:00
|
|
|
}
|
2015-01-12 15:09:39 +00:00
|
|
|
TextView mLastMessage = (TextView) view.findViewById(R.id.conversation_lastmsg);
|
|
|
|
TextView mTimestamp = (TextView) view.findViewById(R.id.conversation_lastupdate);
|
|
|
|
ImageView imagePreview = (ImageView) view.findViewById(R.id.conversation_lastimage);
|
2014-08-15 11:18:15 +00:00
|
|
|
|
2014-10-15 17:32:12 +00:00
|
|
|
Message message = conversation.getLatestMessage();
|
2014-08-15 11:18:15 +00:00
|
|
|
|
2014-10-15 17:32:12 +00:00
|
|
|
if (!conversation.isRead()) {
|
|
|
|
convName.setTypeface(null, Typeface.BOLD);
|
|
|
|
} else {
|
|
|
|
convName.setTypeface(null, Typeface.NORMAL);
|
|
|
|
}
|
|
|
|
|
2015-01-12 15:09:39 +00:00
|
|
|
if (message.getImageParams().width > 0
|
|
|
|
&& (message.getDownloadable() == null
|
|
|
|
|| message.getDownloadable().getStatus() == Downloadable.STATUS_DELETED)) {
|
|
|
|
mLastMessage.setVisibility(View.GONE);
|
|
|
|
imagePreview.setVisibility(View.VISIBLE);
|
|
|
|
activity.loadBitmap(message, imagePreview);
|
|
|
|
} else {
|
|
|
|
Pair<String,Boolean> preview = UIHelper.getMessagePreview(activity,message);
|
|
|
|
mLastMessage.setVisibility(View.VISIBLE);
|
|
|
|
imagePreview.setVisibility(View.GONE);
|
|
|
|
mLastMessage.setText(preview.first);
|
|
|
|
if (preview.second) {
|
|
|
|
if (conversation.isRead()) {
|
|
|
|
mLastMessage.setTypeface(null, Typeface.ITALIC);
|
2014-08-15 11:18:15 +00:00
|
|
|
} else {
|
2015-01-12 15:09:39 +00:00
|
|
|
mLastMessage.setTypeface(null,Typeface.BOLD_ITALIC);
|
2014-08-15 11:18:15 +00:00
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
} else {
|
2015-01-12 15:09:39 +00:00
|
|
|
if (conversation.isRead()) {
|
|
|
|
mLastMessage.setTypeface(null,Typeface.NORMAL);
|
|
|
|
} else {
|
|
|
|
mLastMessage.setTypeface(null,Typeface.BOLD);
|
|
|
|
}
|
2014-10-15 17:32:12 +00:00
|
|
|
}
|
2014-08-15 11:18:15 +00:00
|
|
|
}
|
|
|
|
|
2015-01-12 15:09:39 +00:00
|
|
|
mTimestamp.setText(UIHelper.readableTimeDifference(activity,conversation.getLatestMessage().getTimeSent()));
|
|
|
|
ImageView profilePicture = (ImageView) view.findViewById(R.id.conversation_image);
|
|
|
|
profilePicture.setImageBitmap(activity.avatarService().get(conversation, activity.getPixel(56)));
|
2014-08-15 11:18:15 +00:00
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
2015-01-12 15:09:39 +00:00
|
|
|
}
|