I am new to android and am trying to develop a new android app. But I am struggling to siolve one of the problems in my project.
I am using a listview extended from
I faced same type of problem. ListView's setOnItemClickListener
not works if you add item like a button on every listView item. Solution is use onClick
in the list Item layout(which you use in custom adapter file) as
where onDeleteButtonClickListener is a method in the activity where you set the adapter in listview.
public void onDeleteButtonClickListener(View v) {
// your code
}
here listItem means the individual row item of a ListView
Helpful Link: Button in ListView item