[android-developers] Re: ListView is no clickable

2011-06-28 Thread Manish Garg
Thanks a lot Zsolt. It works. i have used android:focusable="false" , I didnt get why you have also suggested android:clickable="false". We want to that check box shoud get checked/unchecked. Will making it unclickable not make it disable or user will not be able to check it. On Jun 28, 3:58 am

[android-developers] Re: ListView is no clickable

2011-06-28 Thread Zsolt Vasvari
Basic Java Tip #129: @Override is an annotation for the compiler -- it has no effect on how the code is executed. I am 100% sure it's because of those missing attributes. I've wrestled with the same problem before. On Jun 28, 3:38 pm, Ali Chousein wrote: > Manish, > > A very basic question,

[android-developers] Re: ListView is no clickable

2011-06-28 Thread Ali Chousein
Manish, A very basic question, but did you by change forget to put @Override before the declaration of setOnItemClickListener? -- Ali Chousein Geo-Filtered Assistant http://geo-filtered-assistant.blogspot.com/ -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: ListView is no clickable

2011-06-27 Thread Zsolt Vasvari
Add: android:focusable="false" android:clickable="false" to your CheckBox On Jun 28, 5:16 am, Manish Garg wrote: > Hi All, > > I have a simple list view in my application. I am implementing its > setOnItemClickListener but it is not getting called: > >                         android:la