I used listview in fragment but I used list onItemClick listener not working. My code below and how to perfect solution.
onItemClick
public class StoreProf
Add this
android:descendantFocusability="blocksDescendants"
to the RelativeLayout in listItem.xml.
listItem.xml
I guess ImageButton takes focus when you click on list row.
ImageButton
Edit:
Consider using a ViewHolder pattern
ViewHolder
Reference:
http://developer.android.com/training/improving-layouts/smooth-scrolling.html