android – 无法解析符号Theme,ThemeOverlay
作者:互联网
我将我的android studio更新到最新版本 – 3.0.1.从那以后,它在以下代码行中为Theme和ThemeOverlay抱怨’无法解析符号’.
应用程序运行正常但它们在文件中以红色标记.
styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"></style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
build.gradle使用最新版本进行更新
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
解决方法:
1)从“文件”菜单中关闭项目.
2)再次打开项目作为现有的Android Studio项目.
这解决了我的问题.
标签:appcompat-v7-r23,android,build-gradle,android-theme 来源: https://codeday.me/bug/20191001/1838186.html