Yaaic/application/src/org/yaaic/adapter/MessageListAdapter.java

160 lines
3.5 KiB
Java
Raw Normal View History

/*
2010-03-12 14:35:25 -05:00
Yaaic - Yet Another Android IRC Client
2010-03-13 10:52:20 -05:00
Copyright 2009-2010 Sebastian Kaspari
This file is part of Yaaic.
Yaaic 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.
Yaaic 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.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.adapter;
import java.util.LinkedList;
import org.yaaic.model.Conversation;
import org.yaaic.model.Message;
import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
/**
* Adapter for (channel) messages in a ListView
*
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
public class MessageListAdapter extends BaseAdapter
{
private LinkedList<TextView> messages;
private Context context;
/**
* Create a new MessageAdapter
*
* @param channel
* @param context
*/
public MessageListAdapter(Conversation conversation, Context context)
{
LinkedList<TextView> messages = new LinkedList<TextView>();
// Render channel name as first message in channel
if (conversation.getType() != Conversation.TYPE_SERVER) {
Message header = new Message(conversation.getName());
header.setColor(Message.COLOR_RED);
messages.add(header.renderTextView(context));
}
// Optimization - cache field lookups
LinkedList<Message> mHistory = conversation.getHistory();
int mSize = mHistory.size();
for (int i = 0; i < mSize; i++) {
messages.add(mHistory.get(i).renderTextView(context));
}
2010-03-10 19:10:21 -05:00
// XXX: We don't want to clear the buffer, we want to add only
// buffered messages that are not already added (history)
conversation.clearBuffer();
this.messages = messages;
this.context = context;
}
/**
* Add a message to the list
*
* @param message
*/
public void addMessage(Message message)
{
messages.add(message.renderTextView(context));
if (messages.size() > Conversation.HISTORY_SIZE) {
messages.remove(0);
}
notifyDataSetChanged();
}
/**
* Add a list of messages to the list
*
* @param messages
*/
public void addBulkMessages(LinkedList<Message> messages)
{
LinkedList<TextView> mMessages = this.messages;
Context mContext = this.context;
int mSize = messages.size();
for (int i = mSize - 1; i > -1; i--) {
mMessages.add(messages.get(i).renderTextView(mContext));
if (mMessages.size() > Conversation.HISTORY_SIZE) {
mMessages.remove(0);
}
}
notifyDataSetChanged();
}
/**
* Get number of items
*
* @return
*/
public int getCount()
{
return messages.size();
}
/**
* Get item at given position
*
* @param position
* @return
*/
public TextView getItem(int position)
{
return messages.get(position);
}
/**
* Get id of item at given position
*
* @param position
* @return
*/
public long getItemId(int position)
{
return position;
}
/**
* Get item view for the given position
*
* @param position
* @param convertView
* @param parent
* @return
*/
public View getView(int position, View convertView, ViewGroup parent)
{
return getItem(position);
}
}