嗨,大家好我有這個問題引起:java.lang.IllegalStateException:您需要使用Theme.AppCompat主題(或後代)與此activity.I試圖定製我自己的主題,然後將其應用於清單中的整個應用程序,但我得到該問題和應用程序崩潰。請幫忙。第一個是我的manifest.xml,第二個是我定製的xml文件,最後一個是styles.xml。感謝引起︰java.lang.IllegalStateException︰您需要使用Theme.AppCompat主題(或後代)與此活動
enter code here
<application
android:allowBackup="true"
android:configChanges="keyboardHidden|orientation|screenSize"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/BashsTheme">
<activity
android:name=".HomeActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".AddItems"
android:configChanges="keyboardHidden|orientation|screenSize" />
<activity
android:name=".ViewList"
android:configChanges="keyboardHidden|orientation|screenSize" />
</application>
<color name="bashs_color">#3B444B</color>
<style name="BashsTheme" parent="android:Theme.Light">
<item name="android:windowBackground">@color/bashs_color</item>
</style>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
是你的AddItems和ViewList類擴展到ActionBarActivity或Activity? – iMDroid
是的,他們確實擴展ActionBarACtivity –
然後請檢查我的答案.. – iMDroid