I have a ListView in my ListView show ImageButton.
I set focusalble \"false\" and focusableInTouchMode \"false\" to ImageButton.
I s
May be you have written onclick listener for the image button in adapter class
Example :
imageButton.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v) {
}
});
If you set onclick listener for the listItem .It will automatically consume the action input so the list item may not be clicked.