每個Activity都有一個onCreate方法,如下public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.history);}在其中加入一下程式碼即可去除標題欄public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,一定要在setContentView之前setContentView(R.layout.history);}方法2:在manifest.xml中配置android:label="@string/app_name"android:theme="@android:style/Theme.NoTitleBar"> 除了沒有標題欄以外,開發者還可以自定義標題欄,讓應用更加美觀
每個Activity都有一個onCreate方法,如下public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.history);}在其中加入一下程式碼即可去除標題欄public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,一定要在setContentView之前setContentView(R.layout.history);}方法2:在manifest.xml中配置android:label="@string/app_name"android:theme="@android:style/Theme.NoTitleBar"> 除了沒有標題欄以外,開發者還可以自定義標題欄,讓應用更加美觀