程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-在 ListView Footer 中的 Enter Click 監聽器

android-在 ListView Footer 中的 Enter Click 監聽器

編輯:編程綜合問答
在 ListView Footer 中的 Enter Click 監聽器

我想在 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 的末尾,就能評論了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved