问题:我正在尝试使用自定义ListView
来显示聊天中的消息。我已经使用我自己的类的对象对ArrayList
进行了参数化,代码如下所示。
问题:每次布局膨胀时,消息文本和时间戳都保持不变,getView()
方法出错了,但我无法弄清楚是什么。
P.S。 ChatActivity包含大量代码,我只会发布与问题相关的内容以保持其清洁。
Message.java:
public class Message{
/*
* 1- outgoing
* 2-incoming
* */
public String message;
public String timestamp;
public TextView tvmessage, tvtimestamp;
public ImageView indicator;
public int type;
public Message(String text, int type){
this.timestamp = generateTimestamp();
this.message = text;
this.type=type;
Log.d("Message", message);
//Message text is set correctly each time the constructor is called
}
@SuppressLint("SimpleDateFormat")
public String generateTimestamp() {
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
String ts = sdf.format(new Date());
return ts;
}
}
ChatActivity:
private ArrayList<Message> OutgoingMessagesList;
private SingleChatAdapter adapter;
private EditText etInput;
lv = getListView();
adapter = new SingleChatAdapter(this, OutgoingMessagesList);
lv.setAdapter(adapter);
public void sendMessage() {
String tmpMessage = etInput.getText().toString().trim();
/*--- check whether the message string is empty ---*/
if (tmpMessage.length() > 0) {
Message msg = new Message(tmpMessage, 1);
OutgoingMessagesList.add(msg);
/*
* TODO: save the message to local database, send the message to
* server, save it to server database and forward to the recipient
*/
adapter.notifyDataSetChanged();
etInput.setText("");
} else {
MiscUtils.gibShortToast(this, getString(R.string.msgEmpty));
}
}
我相信问题的适配器类是:
public final class SingleChatAdapter extends BaseAdapter {
private Context context;
Message msg;
private ArrayList<Message> messages;
public SingleChatAdapter(Context context, ArrayList<Message> chat) {
this.context = context;
this.messages = chat;
Log.d("ChatAdapter", "called constructor");
}
public int getCount() {
return messages.size();
}
public Object getItem(int position) {
return messages.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup viewGroup) {
msg = (Message) getItem(position);
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// TODO message_incoming should be inflated for messages received
// from server
convertView = (LinearLayout) inflater.inflate(
R.layout.message_outgoing, null);
convertView.setTag(msg);
} else {
msg = (Message) convertView.getTag();
}
msg.tvmessage = (TextView) convertView
.findViewById(R.id.tvMessageOutgoing);
msg.tvtimestamp = (TextView) convertView.findViewById(R.id.tvTimestamp);
msg.indicator = (ImageView) convertView
.findViewById(R.id.imgMessageState);
msg.tvmessage.setText(msg.message);
msg.tvtimestamp.setText(msg.timestamp);
return convertView;
}
来自我的Message类的消息字符串每次都包含正确的值,但是膨胀到列表中的文本始终保持不变。我错过了什么?