I was learning about custom ArrayAdapter.Found this project on Github. I can't figure out why super is used here.
public AndroidFlavorAdapter(Activity context, ArrayList<AndroidFlavor>Flavors) {
super(context, 0, Flavors);
}
When I remove super this error pops up.
X There is no applicable constructor to '()’
Any help?
Because the base class is probably doing the required initialization for the instance.