ちょっとしたチャットアプリを開発していて、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);
動作しますが、膨張したレイアウトがランダムに配置されるようになりました。下のスクリーンショットを参照してください。次のようになります
テスト
test1
test2
...。
理由は何ですか?