我正在使用具有自定义行的 ListView,其中包含 2 个 TextView。我已经制作了自己的适配器,它在我的列表中运行良好。现在,我希望用户输入 2 个文本,然后在我的 ListView 中插入一个新行(带有用户输入)。我尝试过使用 add 方法,但我得到了 UnsupportedOperationException。我是否也必须覆盖 add 方法?如果是这样,我需要在其中做什么?谢谢你。
我将粘贴一段代码。如果您需要更多信息,请告诉我。
public class ChatAdapter extends ArrayAdapter<ChatItems>{
Context context;
int textViewResourceId;
ChatItems[] objects;
public ChatAdapter(Context context, int textViewResourceId,
ChatItems[] objects) {
super(context, textViewResourceId, objects);
this.context = context;
this.textViewResourceId = textViewResourceId;
this.objects = objects;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
ChatHolder holder = null;
if(row == null){
LayoutInflater inflater = ((Activity)context).getLayoutInflater();
row = inflater.inflate(textViewResourceId, null);
holder = new ChatHolder();
holder.user = (TextView) row.findViewById(R.id.textUser);
holder.msg = (TextView) row.findViewById(R.id.textText);
row.setTag(holder);
}else
holder = (ChatHolder) row.getTag();
ChatItems items = objects[position];
holder.msg.setText(items.msg);
holder.user.setText(items.user);
return row;
}
static class ChatHolder{
TextView user;
TextView msg;
}
}
public class ChatItems {
String user;
String msg;
public ChatItems(String user, String msg){
this.user = user;
this.msg = msg;
}
}