ListView的犯规火setOnLongClickListener,只有setOnItemClickListenerListView、setOnLongClickListener、setOnItem

由网友(你即是银河)分享简介:我想有一个ListView这两个类型的点击 - 的onClick和LongClick I'd like to have both type of clicks on a listView - onClick and LongClick.我已经实现了它是这样的:I've implemented it like th...

我想有一个ListView这两个类型的点击 - 的onClick和LongClick

I'd like to have both type of clicks on a listView - onClick and LongClick.

我已经实现了它是这样的:

I've implemented it like this:

this.listViewSub = (ListView) this.findViewById(R.id.listsub);

this.listViewSub.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(final AdapterView parent, final View view, final int position,
                final long id) { ... }    });

        // listen to long click - to share texts
    this.listViewSub.setOnLongClickListener(new OnLongClickListener() {
        @Override
        public boolean onLongClick(View v) { ... } });

但它简化版,火长按。 任何人有任何想法,为什么?

But it does't fire the Long Click. Anyone has any idea why?

推荐答案

u必须使longclickable

u have to enable the longclickable

list.setLongClickable(true);

list.setOnItemLongClickListener(new OnItemLongClickListener() {
        @Override
        public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
                final int arg2, long arg3) {

}
});
阅读全文

相关推荐

最新文章