I have been following this tutorial but I get the error in the title at the line marked below. Any help would be greatly appreciated!
public class ExpenditureArrayAdapter {
private final Context context;
private final Expenditure[] values;
public ExpenditureArrayAdapter(Context context,Expenditure[] values) {
super(context, R.layout.list_expenditures, values); <----
this.context = context;
this.values = values;
}
}