/* Yaaic - Yet Another Android IRC Client Copyright 2009 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 . */ package org.yaaic.adapter; import java.util.LinkedList; import org.yaaic.model.Channel; 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 */ public class MessageListAdapter extends BaseAdapter { private LinkedList messages = new LinkedList(); private Context context; /** * Create a new MessageAdapter * * @param channel * @param context */ public MessageListAdapter(Channel channel, Context context) { this.context = context; // Render channel name as first message in channel // XXX: There will be no messages shown if channel is empty, why? Message header = new Message(channel.getName()); header.setColor(Message.COLOR_RED); messages.add(header.renderTextView(context)); for (Message message : channel.getHistory()) { messages.add(message.renderTextView(context)); } channel.clearBuffer(); } /** * Add a message to the list * * @param message */ public void addMessage(Message message) { messages.add(message.renderTextView(context)); 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); } }