Android - You need to use a Theme.AppCompat theme with this activity

摘要:Android - You need to use a Theme.AppCompat theme with this activity

想要SplashActivity出來時,

不要出現上方的Titlebar然後消失,

 

這需要在 AndroidManifest.xml 裡做設定 

但我可能隨便找網路解,隨便設定後。出現了。

 You need to use a Theme.AppCompat theme with this activity

 

尋著這個問題找到了

http://stackoverflow.com/questions/18764612/android-exception-you-need-to-use-a-theme-appcompat-theme-with-this-activity

 

我沒有參考打勾的答案,

我反而參考了第二個答案。

然後實作就解決問題了。

 

在AndroidManifest.xml

的<activity>

加入


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

 

然後到res/values/styles.xml

加入


    <style name="Theme.AppCompat.Light.NoActionBar" parent="@style/Theme.AppCompat.Light"> 
        <item name="android:windowNoTitle">true</item>
    </style>

就完成了。