我正在开发一个聊天应用程序,并想使用一个ListView
来显示消息。目前我正在尝试获取用户的输入并将其显示为“传出消息”。我的row
布局如下:(TextView
时间戳),TextView
(消息),ImageView
(消息状态指示器)。我的问题:文本和时间戳没有设置,只是一个“虚拟”布局被夸大了。我想我必须以某种方式在适配器内设置文本。有人可以告诉我我做错了什么吗?代码如下。
我的适配器:
public class ChatAdapter extends BaseAdapter {
private Context context;
private List<String> chat;
public ChatAdapter(Context context, List<String> listchat) {
this.context = context;
this.chat = listchat;
}
public int getCount() {
return chat.size();
}
public Object getItem(int position) {
return chat.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup viewGroup) {
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.row, null);
}
TextView tvTS = (TextView) convertView.findViewById(R.id.tvTS);
// TODO set timestamp
TextView tvMessage = (TextView) convertView
.findViewById(R.id.tvMessage);
// TODO set the text to the actual message text from etInput
ImageView indicator = (ImageView) convertView.findViewById(R.id.imgInd);
// TODO set the image Resource according to message state
return convertView;
}
我的活动:
public class ChatActivity extends ListActivity {
private EditText input;
private String tmpMessage;
ListView lv;
ChatAdapter adapter;
List<String> messages;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.lis);
Button send = (Button) findViewById(R.id.btnSend);
input = (EditText) findViewById(R.id.etInput);
lv = getListView();
messages = new ArrayList<String>();
adapter = new ChatAdapter(this, messages);
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
// TODO
}
});
lv.setAdapter(adapter);
send.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
sendMessage();
}
});
}
public void sendMessage() {
tmpMessage = input.getText().toString();
input.setText("");
messages.add(tmpMessage);
adapter.notifyDataSetChanged();
}
@SuppressLint("SimpleDateFormat")
public String generateTimestamp() {
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
String ts = sdf.format(new Date());
return ts;
}
更新
我添加了一个持有人并使用以下代码设置文本:
String message = (String) getItem(position);
holder.message.setText(message);
它可以工作,但是膨胀的布局现在是随机定位的,请参见下面的屏幕截图。它应该看起来像
测试
测试1
测试2
……
是什么原因?