Try this:

mList.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View v, int position,
long id) {
                Toast.makeText(MainView.this, "Id: " + id + ", pos: " + 
position,
Toast.LENGTH_SHORT).show();
        }
});

the same with setOnItemLongClickListener



On 25 Kwi, 06:49, Reiny Song <reiny.s...@gmail.com> wrote:
> I should provide more detail about what I did,
>
> my listview contains the MyAdapter( extends simpleAdapter )
>
> I tried something (the followings are), but nothing helped me.
>
> 1. I set the listview setClickable,
> setFocusableInTouchMode, setLongClickable  = true
>
> 2. set the convertView in getView at MyAdapter
>
>     setClickable, setFocusable ,setFocusableInTouchMode and setLongClickable
> = true
>
> But, when I "click" the item in listview, the item is still not selected.
> (but... the item can be selected by scroll wheel...)
>
> 2010/4/25 Reiny <reiny.s...@gmail.com>
>
> > Dear all,
>
> > I have a problem about the the listview.
>
> > My activity runs in simulator, and I use mouse to control it.
>
> > When I select the item in listview by turning scroll wheel, the
> > background of item becomes orange.
>
> > But, when I "click" the item in listview, the item does not response
> > to my action.
>
> > anyone knows the reason? thank you~
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group 
> athttp://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to