I am trying to populate a spinner but I seem to be missing something in my layout file
ArrayAdapter<String> cuisines = new ArrayAdapter<String>(this, R.layout.spinner_view,
getResources().getStringArray(R.array.cuisines));
I can’t find R.layout.spinner_view and can only assume that I have to make it myself in my layout file. How do I do that?
Include spinner in xml file as:
and in activity: