1. 程式人生 > >Android開發——去除介面頂部的灰色標題欄

Android開發——去除介面頂部的灰色標題欄

在onCreate()方法中寫入:this.requestWindowFeature(Window.FEATURE_NO_TITLE);

protected void onCreate(Bundle savedInstanceState) {

// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);

setContentView(R.layout.login);

}