android开发中经常会在setContentView(R.layout.XXX); 前设置requestWindowFeature(XXXX)。
意思是需要软件全屏显示、自定义标题(使用按钮等控件)和其他的需求
比如做类似于这样的效果
定义好layout文件名叫commontitle.xml
在java中如此设置:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
this.init();
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.common_title); // 设置Featrue
}
可以在init()中setContentView(R.layout.XXX);