我想在 listView 中設置一個 edit text,作為一個footer,那樣的話我就能添加一個評論。我可以把edittext 添加到listview中,但是沒有看到我設置的監聽器。為什麼啊?
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);
添加:
editText.setSingleLine(true);
另外,我覺得你可以不使用 editText 作為 FooterView。把 editText 放在 parentBottom 中,添加 ListView。那樣用戶不用去 list 的末尾,就能評論了。