修复后的黑色背景 - "您需要在此活动中使用Theme.AppCompat主题(或后代)"

时间:2016-09-04 10:21:25

标签: android android-studio android-appcompat fatal-error

昨天该项目工作正常,但今天它突然告诉我"你需要在这个活动中使用Theme.AppCompat主题(或后代)。",但我的所有活动ALREADY扩展了AppCompatActivity!

我尝试使用You need to use a Theme.AppCompat theme (or descendant) with this activity中的解决方案解决此问题,但现在我将所有活动更改为扩展活动后,所有屏幕(活动)都是黑色背景,如下所示:screen after fix

发生什么事了?我今天所做的就是改变我的build.gradle。我改变了

'compile com.google.android.gms:play-services:9.4.0'

    compile 'com.google.android.gms:play-services-location:9.4.0'
    compile 'com.google.android.gms:play-services-maps:9.4.0'
    compile 'com.google.android.gms:play-services-places:9.4.0'

如何解决这个问题?我希望我的所有活动恢复正常..

styles.xml:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

任何帮助将不胜感激,谢谢

0 个答案:

没有答案