大家好我有这个问题引起:java.lang.IllegalStateException:你需要使用一个Theme.AppCompat主题(或后代)与此活动。我试图自定义我自己的主题,然后将其应用于整个应用程序在清单,但我得到了这个问题,应用程序崩溃。请帮忙。首先是我的manifest.xml,第二个是我自定义的xml文件,最后一个是styles.xml。谢谢
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>
答案 0 :(得分:0)
1。如果您使用主题{{1>,请使用 AddItems 和 ViewList 类来扩展活动 }} ..
或强>
2。让您的 AddItems 和 ViewList 类扩展 ActionBarActivity 并实施appcompat主题,例如{{ 1}}
更新:
在此文件中......
android:Theme.Light
由于ActionBarActivity需要appcompat主题..
谢谢..希望它有所帮助...... :)