I am working with ArrayAdapters. I am a bit troubled to understand why a super method (not sure if its a keyword or method in this case?) is applied and introduced. Also, why is its middle constructor value 0?
Cheers.
public class AttractionAdapter extends ArrayAdapter<Attraction> {
public AttractionAdapter(Context context, ArrayList<Attraction> attractions) {
super(context, 0, attractions);
}