[android-developers] Re: listview not clickable after scrolling beyond the main view

2011-06-15 Thread Streets Of Boston
setClickable or the Clickable attribute of your text and imageview. Set them to false. Note that when you call 'setOnClickListener()' on your text or imageview, it will effectively set 'clickable' back to 'true'. -- You received this message because you are subscribed to the Google Groups "Andr

[android-developers] Re: listview not clickable after scrolling beyond the main view

2011-06-15 Thread Wall-E
Thanks for the suggestion but that didn't work. I set the clickable attribute to the parent view of the image and text views and still no luck. So another point I noticed is that if I change the focus by bringing up a dialog and keyboard(to enter text in an edit field for example) and then close

[android-developers] Re: listview not clickable after scrolling beyond the main view

2011-06-15 Thread Wall-E
I also have the imageviews visibility set to GONE and when the user does a long click it makes the image appear. Does having the imageview be GONE have anything to do with my odd behavior? Also, does it matter that the layout containing the textview and imageview is a RelativeLayout? On Jun 15,