Android問題集錦之二十八:You need to use a Theme.AppCompat theme (or descendant) with this activity.

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

起因:
我想在Manifest中設置我的activity全屏,代碼如下:
[html] view plain copy
 在CODE上查看代碼片派生到我的代碼片
  1. <activity  
  2.     android:name=".MainActivity"  
  3.     android:theme="@android:style/Theme.NoTitleBar.Fullscreen"  
  4.     android:label="@string/app_name" >  

原因:
從錯誤提示中提到Theme.AppCompat theme,這是因爲我們的activity一定是繼承了兼容包中的類,
比如我這裏就無意中繼承了ActionBarActivity,它來自android.support.v7.app.ActionBarActivity。
所以就要使用與其配合的AppCompat的theme才行。

解決:
1.根據提示來使用AppCompat的theme,如下:
[html] view plain copy
 在CODE上查看代碼片派生到我的代碼片
  1. <activity  
  2.     android:name=".MainActivity"  
  3.     android:theme="@style/Theme.AppCompat.Light.NoActionBar"  
  4.     android:label="@string/app_name" >  
不過我要設置全屏,但我並沒有找到,所以雖然錯誤不見了,但並沒有達到我的預期。

2.如果不是那麼強烈需要繼承自ActionBarActivity,就直接繼承Activity吧。問題自然搞定!
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章