adapter holder on listener cannot be final
问题 I need to add a progress listener to each element of the horizontal list view, how can I do that? For each item I upload a file. I wanna to do something like that but holder is not final, so I have an error. public class UploadsViewAdapter extends BaseAdapter { private Context mContext; private int mLayoutResourceId; List<Upload> listFileToUpload; public UploadsViewAdapter(Context context, int layoutResourceId, List<Upload> data) { this.mLayoutResourceId = layoutResourceId; this.mContext =