if (audioFileList.get(position).isLastItem()) {
convertView = inflater.inflate(R.layout.fragment_sound_add_button, null);
return convertView;
how can I catch:
if(convertView== R.layout.fragment_sound_add_button) {
remove layout, inflate new layout
}
Try this
Inside the layout file "Fragment_sound_add_button" add an id to the root.
Then inside your code check if your convertView contains this Id
I hope this helps!