我想在我的 listView 中有一个编辑文本作为页脚,这样我就可以添加评论。我可以将edittext添加到列表视图没有问题,但我设置的侦听器没有收到任何事件。任何想法为什么?
editText = new EditText(getActivity());
editText.setHint("add comment");
editText.setBackgroundColor(Color.GRAY);
getListView().addFooterView(editText);
editText.setImeOptions(EditorInfo.IME_ACTION_DONE);
editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
Log.d(DetailFragment.class.getSimpleName(), "pressed");
return false;
}
});
setListAdapter(commentAdapter);