Android Studio渲染问题:无法在当前主题中找到样式“ coordinatorLayoutStyle”

时间:2018-10-12 22:25:17

标签: android android-studio-3.0

每当我添加导航活动时,都会在下面的屏幕截图中看到此问题。有关更多详细信息,我使用的是编译SDK版本27。 添加导航活动后生成的布局文件中出现了这个问题。

我的主题是AppTheme.NoActionBar

我的styles.xml文件内容如下:

<!-- 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>

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

该怎么办?我对此非常困惑。

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为使用(Base.Theme)您的问题已解决 像这样:parent =“ Base.Theme.AppCompat.Light.DarkActionBar”>