What is the difference between
setContentView(R.layout.main);
and
ArrayAdapter arrayAdapter = new ArrayAdapter(this,
android.R.layout.simple_spinner_dropdown_item, sarray);
What is the difference between R.layout and android.R.layout?
R.layout.*are layouts you provide (in res/layout, for example).android.R.layout.*are layouts that ship with the Android SDK.