我使用support.v7.app.AppcompatActivity
实现了一个Android应用程序。此应用程序无法编译:当我将鼠标光标放在super
键上方时,它会显示以下错误:
Cannot access android.support.v4.app.BaseFragmentActivityHoneycomb
答案 0 :(得分:4)
我有同样的问题。 我的决议是:
替换项目依赖项:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
}
与
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:support-annotations:24.0.0'
}
它对我有用,祝你好运。
答案 1 :(得分:0)
似乎是一个编译问题。尝试检查File-> Project structure-> project->设置Gradle版本和Android插件版本,然后重新构建项目。
我通过手术发现了隐藏的问题。