安卓中setContentView(R.layout.main)的意思是:
R.layout.main是个布局文件即控件都是如何摆放如何显示的,setContentView就是设置一个Activity的显示界面,这句话就是设置Activity采用R.layout下的main布局文件进行布局
。