我使用support.v7.app实现了一个Android应用程序。AppcompatActivity
。此应用程序无法编译:当我将鼠标光标放在超级
键上方时,它会显示以下错误:
Cannot access android.support.v4.app.BaseFragmentActivityHoneycomb
我也有同样的问题。我的决心是:
替换项目依赖项:
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'
}
对我有用,祝你好运。
这似乎是一个编译问题。尝试检查文件-
我通过操作发现了隐藏的问题。