1. 程式人生 > >java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this a

java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this a

在設定隱藏標題欄的時候:出現以下錯誤

java.lang.IllegalStateException: You need to use a Theme.
AppCompat theme (or descendant) with this activity

原因:

原來我的Activity繼承自 Android.support.v7.app.AppCompatActivity,而不是 android.app.Activity。

解決方法:

AndroidManifest.xml檔案中關於Activity隱藏標題欄的主題配置改成:

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