Appcompat-v7:27.1.1 样式错误

Appcompat-v7:27.1.1 style error

我的应用程序突然开始抛出这个错误:

error: :style>. Message{kind=ERROR, text=error: :style>., sources= [.../.gradle/caches/transforms-1/files-1.1/appcompat-v7->27.1.1.aar/6841cb0f36d8ca017bbed63b78588e52/res/values/values.xml:1586:5->1587:13], original message=, tool name=Optional.of(AAPT)}

这是它指向的线:

parent="Base.DialogWindowTitle.AppCompat">

我从 sdk 管理器中卸载了支持存储库并重新安装了它!但是并没有解决问题![​​=13=]

这是我在应用程序中对支持库的使用 gradle:

implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

在我创建了一个新项目并将所有类和资产一一添加后,我终于找到了问题所在。 问题出在我的 style.xml 中,是因为一个错误的样式定义! 有一个嵌套的样式定义!像这样的事情:

<style name="someThing">
   ...
   <style name="anotherStyle">
      ...
   </style>
</style>

我觉得android studio 3.1.3 可以更好的指出问题! 谢谢!