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