1. 程式人生 > >Android Activity隱藏標題欄

Android Activity隱藏標題欄

activity隱藏標題欄需要注意:

1、繼承Activity、FragmentActivity的頁面

1)在onCreate方法裡面新增:

requestWindowFeature(Window.FEATURE_NO_TITLE);

2)在AndroidManifest裡面設定頁面的theme:

android:theme="@android:style/Theme.NoTitleBar"

2、繼承AppCompatActivity的頁面

1中的兩種方法都不能使用

只能在在AndroidManifest裡面設定頁面的theme:

android:
theme="@style/Theme.AppCompat.Light.NoActionBar"