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
whenever you list item contains something like button then this type of problem comes. you should use a view holder in you adapter class.
private class ViewHolder{ ImageButton imagebutton; TextView textView; }
use it in your getview method. hope this will work for you.