+1  A: 

I've had the same problem. The trick is to make the descendants of the LinearLayout unfocusable. Basically, your LinearLayout has to have this attribute:

android:descendantFocusability="blocksDescendants"

Your TextView will still scroll.

Felix
This is almost a solution of my problem. Now I can click on any places on Item and handle onItemClick. But, when I click on TextView, which is scrollable, nothing occurs(( How can I handle this situation when user "just click" on TextView on Item and "click and move mouse" on TextView on Item to scroll thix TextView?
rauch
@rauch you can set an onClickListener on the TextView and do the same thing you'd do in the item click listener :)
Felix