java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.java
从错误提示中提到Theme.AppCompat theme,这是由于咱们的activity必定是继承了兼容包中的类,
好比我这里就无心中继承了ActionBarActivity,它来自android.support.v7.app.ActionBarActivity。
因此就要使用与其配合的AppCompat的theme才行android
1.根据提示来使用AppCompat的theme,以下:app
<activity android:name=".MainActivity" android:theme="@style/Theme.AppCompat.Light.NoActionBar" android:label="@string/app_name" >
不过我要设置全屏,但我并无找到,因此虽然错误不见了,但并无达到个人预期。this
2.若是不是那么强烈须要继承自ActionBarActivity,就直接继承Activity吧。问题天然搞定!spa