我在build.gradle中添加了编译'com.android.support:appcompat-v7:22.2.0'作为依赖项。但是,app也会在从appcompat-v7访问许多资源时出错。
错误:
Error:(25, 64) No resource found that matches the given name (at 'drawable' with value '@drawable/abc_textfield_default_mtrl_alpha').
答案 0 :(得分:0)
请提供详细错误堆栈跟踪
在Build.gradle中,将其添加到依赖项中
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
}